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 );

-derby

Replies are listed 'Best First'.
Re^4: LWP::UserAgent not finishing get requests?
by ttlgreen (Sexton) on Jan 17, 2009 at 03:04 UTC
    Sorry I should have been more clear about that. I meant just running that little snippet from the docs that I posted.

    Anyway it looks like the error was in fact.. me :( (See below)

    Thanks for trying to help me though!