Ing. Branislav Gerzo wrote:
DG> I do have all three modules (Crypt::SSLeay, Net::SSLeay,
DG> IO::Socket::Perl) installed, but still can't get https:// through an
DG> http proxy. LWP::UserAgent would immediately return a response object
DG> with code 501. I can access https:// URLs directly (without a proxy) and
DG> get http:// URLs using proxy though.

your proxy have to support SSL, so try to do that with:
213.46.246.134
155.229.204.25
66.255.117.66

all on port 80. Also, you have to properly set up proxy to UserAgent,
for example:

$ua->proxy(['http', 'https'] => "http://213.46.246.134:80";);

I have done the above and the proxy (squid) does support SSL (using CONNECT method), I use it everyday. LWP returns 501 without hitting the proxy though, so can I confirm here that LWP doesn't support https request over http proxy?


--
dave

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to