Hello,
I have written a nice CGI script that gets data from an ASP page, processes it, and POSTs data to another ASP page. I used the recommended LWP::UserAgent methods for this. The problem is that the ASP pages on either side rely on the IIS SessionID. The SessionID gets changed when the Perl script is called. My theory is that the use of LWP::UserAgent triggers IIS to destroy the old session and create a new one. Is there any other way to POST data without using LWP? Is my theory even close to correct? Any help would be greatly appreciated.