Hi,
use LWP::UserAgent;
my $ua = new LWP::UserAgent;
my $req = new HTTP::Request('GET', '
https://test.com');my $res = $ua->request($req);
print $res->content()."\n";
print $res->code."\n";
The above program works when I have protocol as http, it won't work when the protocol is https.
The problem is, I think in my system "Crypt:

SLeay" is not installed which inturn uses openssl.
My question how to install Crypt:

SLeay in windows xp professional. I tried copying Crypt:

SLeay.pm under lib folder, its not picking.
At the same time I searched a google and forum tried some of the inputs, no success.
Any suggestion to install above module in win xp pro will be helpful.
Or else any suggestion on handling https protocol will be appreciated.