Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: LWP https problem with no_proxy

by daxim (Curate)
on Mar 11, 2013 at 12:13 UTC ( [id://1022789]=note: print w/replies, xml ) Need Help??


in reply to LWP https problem with no_proxy

Works for me.

plackup -e'sub{[200,[],[]]}'
starts a dummy Web server at localhost:5000. It doesn't proxy, it doesn't even do anything useful, but that's not important, the point is that it logs some output when it receives a request.

http_proxy=http://localhost:5000 no_proxy=perlmonks.org perl -mLWP::UserAgent -e'my $ua = LWP::UserAgent->new; $ua->env_proxy; $ua->get("http://example.net")'
gives error output from the dummy proxy - the LWP client tries to talk through the proxy.

http_proxy=http://localhost:5000 no_proxy=perlmonks.org perl -mLWP::UserAgent -e'my $ua = LWP::UserAgent->new; $ua->env_proxy; $ua->get("http://perlmonks.org/index.pl?node_id=1022784")'
gives no output from the dummy proxy - it is by-passed.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1022789]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-25 05:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found