dwatson06 has asked for the wisdom of the Perl Monks concerning the following question:
It was suggested that I need to strip the parity bit.(???) How can I make the response readable?use LWP::UserAgent; use Crypt::SSLeay; my $ua = new LWP::UserAgent; my $req = HTTP::Request->new('POST', 'https://asite.com:443/adir/creat +e_user.cgi', HTTP::Headers->new( Content_Type => 'application/x-www-form-urlencoded', Content_Length => 21, Content => '<User>John.Doe</User>', )); my $res = $ua->request($req); print $res->content;
2002-06-27 Edit by Corion : Moved to Seekers of Perl Wisdom and added CODE tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Possible Encrypted response using SSLeay
by dws (Chancellor) on Jun 27, 2002 at 17:37 UTC |