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";