in reply to LWP: POST with headers

Alternatively, try

my $r = POST( 'https://someserver.com', $submit_values); $r->header(Timeout => '30');

Replies are listed 'Best First'.
Re^2: LWP: POST with headers
by tbbatccc (Initiate) on Jun 04, 2009 at 11:00 UTC
    Thank you for your reply, I had tried this method, but the PERL program just hung and did not complete.. not sure what else I was doing wrong. However, I did get the code to work via another poster.. Thanks again for taking the time to respond.