in reply to Re^2: pb with Soap::lite
in thread pb with Soap::lite
If you try to access the service using basic authentication, then you might try adding the code below to provide the auth info when requested.
... sub SOAP::Transport::HTTP::Client::get_basic_credentials { return 'username' => 'password'; } my $service = SOAP::Lite -> service('http://url.wsdl'); ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: pb with Soap::lite
by manuds (Initiate) on Feb 21, 2008 at 17:31 UTC |