Becker has asked for the wisdom of the Perl Monks concerning the following question:
This code runs in server1.comuse LWP::UserAgent; use HTTP::Request::Common; $DEV_URL = 'http://server2.com/page.html'; my $ua = LWP::UserAgent->new; my $response = $ua->request(POST $DEV_URL, [ jsp => 'login', USER_ID => 'DEV', PASSWORD => 'SIM01', ]); print "RESPONSE: " . $response->as_string() . "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Question using HTTP::Request::Common
by rhesa (Vicar) on Mar 29, 2007 at 18:48 UTC | |
by Becker (Initiate) on Mar 29, 2007 at 18:54 UTC | |
by rhesa (Vicar) on Mar 29, 2007 at 18:57 UTC | |
by Becker (Initiate) on Mar 29, 2007 at 19:03 UTC | |
by rhesa (Vicar) on Mar 29, 2007 at 19:10 UTC | |
|