in reply to Re^2: LWP::UserAgent not finishing get requests?
in thread LWP::UserAgent not finishing get requests?
Your script? What about the simple snippet you posted? That too? What's this give you?
!#/usr/bin/perl use strict; use warnings; use Data::Dumper; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $response = $ua->get('http://search.cpan.org/'); print Dumper( $response );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: LWP::UserAgent not finishing get requests?
by ttlgreen (Sexton) on Jan 17, 2009 at 03:04 UTC |