in reply to Re: problem w/ LWP::UserAgent?
in thread problem w/ LWP::UserAgent?
C:\Documents and Settings\dorian>perl
print $];
use CGI qw/:standard/;
use CGI::Carp (fatalsToBrowser);
require LWP::UserAgent;
print header;
my $ua = LWP::UserAgent->new;
my $url = 'http://google.com';
my $response = $ua->get($url);
if ($response->is_success) {
print $response->decoded_content; # or whatever
}
else {
die "failed: $url : ", $response->status_line;
}
^Z
5.016003Content-Type: text/html; charset=ISO-8859-1
Software error:
failed: http://google.com : 500 Status read failed: A non-blocking socket o
peration could not be completed immediately. at - line 18.
For help, please send mail to this site's webmaster, giving this error message
and the time and date of the error.
Thu May 30 13:43:04 2013 -: failed: http://google.com : 500 Status read failed
: A non-blocking socket operation could not be completed immediately. at - line
18.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: problem w/ LWP::UserAgent?
by BrowserUk (Patriarch) on May 30, 2013 at 18:33 UTC | |
by dorianwinterfeld (Acolyte) on May 31, 2013 at 17:03 UTC | |
by BrowserUk (Patriarch) on May 31, 2013 at 20:40 UTC | |
by dorianwinterfeld (Acolyte) on Jun 03, 2013 at 14:01 UTC | |
by BrowserUk (Patriarch) on Jun 03, 2013 at 14:24 UTC | |
by dorianwinterfeld (Acolyte) on Jun 03, 2013 at 13:52 UTC |