http://www.perlmonks.org?node_id=348171


in reply to Re: Connection through a proxy
in thread Connection through a proxy

Hi,

What is the difference with this module, and the Basic authentication that comes with LWP?

See the credentials function in LWP::UserAgent.


---------------------------
Dr. Mark Ceulemans
Senior Consultant
BMC, Belgium

Replies are listed 'Best First'.
Re: Re: Re: Connection through a proxy
by TwistedGreen (Sexton) on Apr 26, 2004 at 14:27 UTC
    From what I gathered when I was working on this problem, the main difference is in the level of abstraction of the modules. LWP::UserAgent will not give you a direct socket, while Net::HTTPTunnel will return a TCP socket which is tunneled transparently through the proxy you specify. You can then write what you will to the server, such as the HTTP GET request as shown in the example.

    But if you just want to retrieve a page like I did, the critical difference was that Net::HTTPTunnel worked swimmingly with my proxy while LWP::UserAgent seemed unable to authenticate properly. Perhaps a more experienced monk can explain the underlying mechanics.