in reply to Re: Re: reading asp session variables in a perl script
in thread reading asp session variables in a perl script

Okay then, unless you can figure something out using COM objects you won't be able to access them easilly. Try getting ASP to store them in a SQL database and see if you can find them in there, or else make your VBScript store them in a different way, like writing them to a file or database table. Microsoft's session handling is proprietary, so the only way to get access to it is to reverse engineer it.
  • Comment on Re: Re: Re: reading asp session variables in a perl script

Replies are listed 'Best First'.
Re: Re: Re: Re: reading asp session variables in a perl script
by menolly (Hermit) on Aug 28, 2003 at 19:52 UTC
    If there's a reasonable number of values involved,and you know which ones you'll need, I'd think it would be simpler to pass them to the CGI script as form values. Is the CGI script being called by a form submit, or just a link, or what?