LWP: Accessing https URL from http proxy unimplemented?

2005-01-30 Thread David Garamond
Is there an alternative to do this in Perl (without resorting to system "wget ..." or system "curl ...")? -- sh -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: LWP: Accessing https URL from http proxy unimplemented?

2005-01-30 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (David Garamond) writes: >Is there an alternative to do this in Perl (without resorting to system >"wget ..." or system "curl ...")? See http://search.cpan.org/src/GAAS/libwww-perl-5.803/README.SSL -- Peter Scott http://www.perldebugged.com/ **

Re: LWP: Accessing https URL from http proxy unimplemented?

2005-01-30 Thread David Garamond
Peter Scott wrote: In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (David Garamond) writes: Is there an alternative to do this in Perl (without resorting to system "wget ..." or system "curl ...")? See http://search.cpan.org/src/GAAS/libwww-perl-5.803/README.SSL I do have all three modules (Cry

Re: LWP: Accessing https URL from http proxy unimplemented?

2005-01-30 Thread David Garamond
David Garamond wrote: Peter Scott wrote: In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (David Garamond) writes: Is there an alternative to do this in Perl (without resorting to system "wget ..." or system "curl ...")? See http://search.cpan.org/src/GAAS/libwww-perl-5.803/README.SSL I do have

Re: LWP: Accessing https URL from http proxy unimplemented?

2005-01-30 Thread Ing. Branislav Gerzo
David Garamond [DG], on Monday, January 31, 2005 at 11:00 (+0700) contributed this to our collective wisdom: 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 retur

Re: LWP: Accessing https URL from http proxy unimplemented?

2005-01-31 Thread David Garamond
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

Re: LWP: Accessing https URL from http proxy unimplemented?

2005-01-31 Thread Ing. Branislav Gerzo
David Garamond [DG], on Monday, January 31, 2005 at 20:58 (+0700) wrote about: >> $ua->proxy(['http', 'https'] => "http://213.46.246.134:80";); DG> I have done the above and the proxy (squid) does support SSL (using DG> CONNECT method), I use it everyday. LWP returns 501 without hitting the DG> p