in reply to LWP: POST with headers

Try

my $headers = HTTP::Headers->new( 'Timeout' => '30', ); $ua->default_headers($headers);

Replies are listed 'Best First'.
Re^2: LWP: POST with headers
by tbbatccc (Initiate) on Jun 04, 2009 at 10:58 UTC
    Your code did the trick, thank you, thank you, thank you!