lablett has asked for the wisdom of the Perl Monks concerning the following question:
use LWP::UserAgent; use DBI; #Step 1 : Move dcr to correct location #Step 2 : Generate acuate report - SOAP call #Step 3 : Call JSP $page = 'http://128.31.33.22/maintenance/adrian/reportlet/Green_1b +/repServerRed.jsp?username=adrianh'; $ua = new LWP::UserAgent; my $req = new HTTP::Request ('GET' => $page); $req->content_type('application/x-www-form-urlencoded'); my $res = $ua->request($req); my $html = $res->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Cannot determine protocol
by PodMaster (Abbot) on Mar 12, 2003 at 15:16 UTC | |
|
Re: Cannot determine protocol
by pg (Canon) on Mar 12, 2003 at 15:43 UTC | |
|
Re: Cannot determine protocol
by grinder (Bishop) on Mar 12, 2003 at 16:12 UTC | |
|
Re: Cannot determine protocol
by lablett (Initiate) on Mar 12, 2003 at 16:55 UTC |