RE: 501 Protocol scheme 'http' is not supported

2006-04-25 Thread Sanchita Dahal
rl script. Simply as a perl script > > Most probably the error is with the perl module > installation. > Please change the url that you are trying to access > and check. Itried again and got the same result. > > Regards > Nishanth > > --- Sanchita Dahal <[EM

501 Protocol scheme 'http' is not supported

2006-04-25 Thread Sanchita Dahal
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; } *