in reply to Re^4: ISA Proxy and LWP
in thread ISA Proxy and LWP

That's the response im getting back from the webservice

No, that's the status code of the response. I showed you (twice!) how to print the response.

The Data::Dumper output isn't as readable as ->as_string, but it also holds the info I was seeking:

'www-authenticate' => [ 'Negotiate', 'NTLM' ],

LWP only supports basic and digest authentication, but the server is asking for NTLM authentication. I'd start by checking out the module the Anonymous Monk mentioned.

Replies are listed 'Best First'.
Re^6: ISA Proxy and LWP
by perlnewb123 (Sexton) on Oct 18, 2008 at 04:38 UTC
    Thanks. I see a NTLM mod under LWP-Authen. And by calling LWP, it should in turn reference this right?