in reply to Finding Internet Explorer proxy config
use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->env_proxy; # initialize from environment variables my $req = HTTP::Request->new(GET => 'wais://xxx.com/'); print $ua->request($req)->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Finding Internet Explorer proxy config
by Ieronim (Friar) on Jul 11, 2006 at 12:45 UTC | |
by marto (Cardinal) on Jul 11, 2006 at 12:46 UTC |