Hello,
wrote:
> Using LWP or WWW::Mechanize requires the Crypto module to be installed
> and the openSSL as well to access the HTTPS protocol.
>
> When using the Win32::Internet, the server redirects me back to the
> login form since I am sending the request without any session cookies.
The reason you are being redirected back to the login page is not the
cookies
its because you have not established a secure connection.
HTTPS is the protocol for accessing a secure Web server where authentication
and
encrypted communication is possible. Using HTTPS in the URL instead of HTTP
directs the message to a secure port number rather than the default
Web port number of 80. The default TCP/IP port of HTTPS is 443.
> Is it possible to maintain the session cookies with Win32::Internet?
Mr. Bokma has already provided you with an excellent way to solve
your problem. I would suggest you take his advice.
Mothra