Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

How to make LWP::Simple use a proxy?

by freak (Initiate)
on May 04, 2004 at 16:25 UTC ( [id://350408]=perlquestion: print w/replies, xml ) Need Help??

freak has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: How to make LWP::Simple use a proxy?
by sgifford (Prior) on May 04, 2004 at 16:35 UTC
    This is in the documentation for LWP::Simple:
    The user agent created by this module will identify itself as "LWP::Simple/#.##" (where "#.##" is the libwww-perl version number) and will initialize its proxy defaults from the environment (by calling $ua->env_proxy).
    and for LWP::UserEgent:
    $ua->env_proxy
    Load proxy settings from *_proxy environment vari­ables. You might specify proxies like this (sh-syntax):
                 gopher_proxy=http://proxy.my.place/
                 wais_proxy=http://proxy.my.place/
                 no_proxy="localhost,my.domain"
                 export gopher_proxy wais_proxy no_proxy
    
    csh or tcsh users should use the "setenv" command to define these environment variables.

    On systems with case insensitive environment variables there exists a name clash between the CGI environment variables and the "HTTP_PROXY" environment variable normally picked up by env_proxy(). Because of this "HTTP_PROXY" is not honored for CGI scripts. The "CGI_HTTP_PROXY" environment variable can be used instead.

    So you should be able to simply set the appropriate environment variables.

Re: How to make LWP::Simple use a proxy?
by Tomte (Priest) on May 04, 2004 at 16:37 UTC

    From the pod of LWP::Simple :

    The user agent created by this module will identify itself as "LWP::Simple/#.##" (where "#.##" is the libwww-perl version number) and will initialize its proxy defaults from the environment (by calling $ua->env_proxy).

    And accordingly looked up in the pod of LWP::UserAgent (emphasis again mine):

    Load proxy settings from *_proxy environment variables. You might specify proxies like this (sh-syntax):
    • gopher_proxy=http://proxy.my.place/
    • wais_proxy=http://proxy.my.place/
    • no_proxy="localhost,my.domain"
    • export gopher_proxy wais_proxy no_proxy
    csh or tcsh users should use the "setenv" command to define these environment variables.
    On systems with case insensitive environment variables there exists a name clash between the CGI environment variables and the "HTTP_PROXY" environment variable normally picked up by env_proxy(). Because of this "HTTP_PROXY" is not honored for CGI scripts. The "CGI_HTTP_PROXY" environment variable can be used instead.

    So just set up the environment accordingly, and LWP::Simple DWYM.

    regards,
    tomte


    An intellectual is someone whose mind watches itself.
    -- Albert Camus

    A reply falls below the community's threshold of quality. You may see it by logging in.
Re: How to make LWP::Simple use a proxy?
by eXile (Priest) on May 04, 2004 at 16:37 UTC
    From the LWP::Simple manpage:
    The user agent created by this module will identify itself as "LWP::Simple/#.##" (where "#.##" is the libwww-perl version number) an +d will initialize its proxy defaults from the environment (by calling $ua->env_proxy).
    I think they mean the HTTP_PROXY environment-variable, so in your script you could set something like:
    $ENV{'HTTP_PROXY'}='http://proxy:3128/';
    before you create the user agent.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (8)
As of 2024-04-18 10:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found