Mitch has asked for the wisdom of the Perl Monks concerning the following question:
use LWP::UserAgent; use HTTP::Request::Common; use Authen::NTLM; ntlm_reset(); ntlm_domain(Domain); ntlm_user(username); ntlm_password(password); # How does the ntlm functions tie in with Lwp methods? $ua = new LWP::UserAgent(); $ua->proxy('http','proxyserver'); $resp = $ua->request(GET "http://www.perl.com"); $htmcode=$resp->{_content}; print "here comes the output...\n$htmcode\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Proxy NTLM Authentication
by gjb (Vicar) on Jul 03, 2003 at 16:52 UTC | |
by Mitch (Sexton) on Jul 03, 2003 at 17:03 UTC |