[EMAIL PROTECTED] wrote:
>
> Doug Marvin,
>
> My problem is not with id and password, I am not there yet. I am being
> returned a default page from our Webserver (no matter what the supplied URL)
> by uncommenting the two lines in this script.
>
> When I run this script for all URLs on our intranet I get the right
> document. Looks like I am having problems setting up my proxy.
indeed...I'd venture to guess that you don't want to point LWP at
the proxy -autoconfig file- (pac):
> #$ua->proxy(['http', 'ftp'] => 'http://proxynt.corp.bam.com/proxy.pac');
-------------------------------------------------------------^^^^^^^^^^
try:
$ua->proxy(['http', 'ftp'] => 'http://proxynt.corp.bam.com');
and you might want to toss in a line like:
$ua->no_proxy('bam.com');
while you're at it.
--
Doug Monroe