in reply to Re: Re: Using SOAP::Lite without a proxy
in thread Using SOAP::Lite without a proxy

If the endpoint uses basic authentication then you have to override the get_basic_credentials method in SOAP::Transport::HTTP::Client...

sub SOAP::Transport::HTTP::Client::get_basic_credentials { return('domain\username','Password'); }

perl.com has a good SOAP::Lite tutorial which covers other kinds of authentication you might encounter on the endpoint.


We're not surrounded, we're in a target-rich environment!