in reply to Session ID issued by IIS Web Server

Is this a plain CGI script, or are you using the Perl IIS DLL? If the former, is there any reason not to use the latter? It should be (nearly) trivial in the latter case.

Makeshifts last the longest.

  • Comment on Re: Session ID issued by IIS Web Server

Replies are listed 'Best First'.
Re: Re: Session ID issued by IIS Web Server
by ssr (Initiate) on Oct 06, 2003 at 16:34 UTC
    Thanks for your reply. I am using perl5.005 and IIS 6.0. Could you please point me in the right direction as to how to use it and any valuable resources., etc., Thanks very much!
      With ASP.net you can specify a state server - either a SQL server or it's own state service. So if you specify <sessionState mod="sqlserver" etc etc then you could poll the sql server w/ your perl script and get the state I would presume.