Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
We're doing this (as opposed to using LWP) because LWP is reporting errors and the java software devilopers want proof it's not because of reported problems they've read regarding LWP. Thank you in advance,#!/usr/local/bin/perl -w use strict; my $url = "https//somehost.domain.com/"; my $url_port = "somehost.domain.com:443"; my @SSL; open( SSL,"| /usr/local/ssl/bin/openssl s_client -connect $url_port +"); print SSL "get $url\n"; close(SSL); foreach (@SSL) { print; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Openssl & GET
by Aristotle (Chancellor) on Apr 28, 2003 at 20:20 UTC | |
by Anonymous Monk on Apr 28, 2003 at 20:31 UTC | |
by Aristotle (Chancellor) on Apr 29, 2003 at 00:26 UTC | |
by Anonymous Monk on Apr 29, 2003 at 18:49 UTC |