Hi,
I am trying to run this

++++++++++++++
require LWP::UserAgent;

 my $ua = LWP::UserAgent->new;

 my $response = $ua->get('http://search.cpan.org/');

 if ($response->is_success) {
     print $response->content;  # or whatever
 }
 else {
     die $response->status_line;
 }
*********************
I am getting  "501 Protocol scheme 'http' is not supported at test.pl
line 11." error. Please help.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to