in reply to Trying to pass through firewall programmatically
Since it sounds like you are doing this to circumvent company security policy, you should probably get permission to do this if you haven't already.{ package MyUserAgent; @ISA = qw(LWP::UserAgent); sub get_basic_credentials { my ($self, $realm, $uri) = @_; #do stuff with $realm and $uri if desired return ('myuserid', 'mypassword'); } } my $ua = MyUserAgent->new();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Trying to pass through firewall programmatically
by idnopheq (Chaplain) on Sep 10, 2001 at 23:59 UTC | |
|
Re: Re: Trying to pass through firewall programmatically
by dze27 (Pilgrim) on Sep 11, 2001 at 00:17 UTC |