CiceroLove has asked for the wisdom of the Perl Monks concerning the following question:
and then:use LWP; use LWP::UserAgent; use LWP::Protocol::https;
This prints HTTP::Response=HASH(nxnnnennn) where n is some number. The second snippet changesmy $connect = new LWP::UserAgent; my $request = new HTTP::Request 'POST', 'https://secure.directnic.com/ +myaccount/myaccount.php'; my $response = $connect->request($request); print $response;
to:print $response;
and gives me 500 (Internal Server Error) cannot connect to secure.directnic.com:443. I know that I can conect to it when I telnet to that port. Any suggestions from anyone?print $response->content; print $response->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re (tilly) 1: Grab a page using openSSL
by tilly (Archbishop) on Jan 25, 2001 at 07:14 UTC | |
|
Re: Grab a page using openSSL
by bsb (Priest) on Jan 25, 2001 at 08:46 UTC | |
by CiceroLove (Monk) on Jan 26, 2001 at 02:17 UTC |