in reply to Re: Building OpenSSL
in thread Building OpenSSL

hai bowei,

thanks for ur reply. now i installed Crypt::Ssleay module, while running my sample script i get Ordinal 110 could not be located in the dynamic link library SSLEAY32.dll error msg. and 501 protocol scheme for 'https' is not supported.

#!/usr/bin/perl use LWP 5.64; my $url = 'https://www.paypal.com/'; # Yes, HTTPS! my $browser = LWP::UserAgent->new; my $response = $browser->get($url); die "Error at $url\n ", $response->status_line, "\n Aborting" unless $response->is_success; print "Whee, it worked! I got that ", $response->content_type, " document!\n";
thanks
with regards
Prabhu.S.M