in reply to Re: Authentication and Authorization for SOAP
in thread Authentication and Authorization for SOAP
The login credentials can then be passed along with any other arguments into whatever SOAP method is being called, and dealt with seperately.my $headers = SOAP::Header ->name( 'LoginCredentials' ) ->value( [ SOAP::Header ->name('Username') ->value( $username ) , SOAP::Header ->name('Password') ->value( $password ) , ] ) ) ;
|
|---|