in reply to reading asp session variables in a perl script

The easiest option I see, is storing the Session Vars in a DB. The ASP Session ID is stored in a cookie, so you can use that as the identifier in the DB. Do the insert in ASP and query out the data in Perl with a mixture of CGI::Cookie and DBI.

Although there may be some COM objects buried deep inside the MSDN, that allows you to access this info with Win32::OLE.
  • Comment on Re: reading asp session variables in a perl script