Bill.Costa has asked for the wisdom of the Perl Monks concerning the following question:
What I don't understand is how to reach into the transport layer within SOAP::WSDL::Manual object to set this. Heck, I haven't even figured out what modules are being used to do the HTTP. I'm hoping somebody can either help me with the authentication problem, or suggest a different Perl SOAP module known to play nice with Oracle's WebLogic SOAP services.my $CREDENTIALS = 'Basic ' . MIME::Base64::encode($UNAM . ':' . $PWD); my $request = HTTP::Request->new(POST => $END_POINT); $request->header(Authorization => $CREDENTIALS);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::WSDL::Manual and WebLogic authentication
by runrig (Abbot) on Jul 15, 2013 at 21:37 UTC | |
by Bill.Costa (Acolyte) on Jul 15, 2013 at 23:31 UTC | |
by runrig (Abbot) on Jul 15, 2013 at 23:42 UTC |