in reply to Post to https from behind firewall
However, it could be that all you need to do is set the proxy settings in your script using LWP. The key is to use the LWP::UserAgent module. From the docs:
$ua->proxy(...)
Set/retrieve proxy URL for a scheme:The first form specifies that the URL is to be used for proxying of access methods listed in the list in the first method argument, i.e. 'http' and 'ftp'. The second form shows a shorthand form for specifying proxy URL for a single access scheme.$ua->proxy(['http', 'ftp'], 'http://proxy.sn.no:8001/'); $ua->proxy('gopher', 'http://proxy.sn.no:8001/');
Gary Blackburn
Trained Killer
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Post to https from behind firewall
by perlsgerl (Initiate) on Jun 26, 2001 at 03:20 UTC |