Specimen has asked for the wisdom of the Perl Monks concerning the following question:
use HTTP::Request::Common;
use LWP::UserAgent;
$submitpage = "https://domain/page.cgi";
$ua = LWP::UserAgent->new();
push @namevaluearray, ("fieldname", "fieldvalue");
my $req = POST $submitpage, \@namevaluearray;
$content = $ua->request($req)->as_string;
print $content . "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: posting ssl request.
by bastard (Hermit) on Aug 31, 2000 at 21:14 UTC | |
by Specimen (Acolyte) on Sep 01, 2000 at 13:45 UTC | |
|
(jeffa) Re: posting ssl request.
by jeffa (Bishop) on Aug 31, 2000 at 21:05 UTC | |
by Specimen (Acolyte) on Aug 31, 2000 at 21:12 UTC |