Hammy has asked for the wisdom of the Perl Monks concerning the following question:
Does my question make any sense? If it does, does anyone know if I need some kind of module or something else to force the header to go. I am calling the Soap Service from the server that houses the SSL cert in question. Thanks.use SOAP::Lite +trace; my $s = SOAP::Lite -> uri('https://www.webmdhealth.com/SoapService/SoapService') ->proxy('https://stagingdi.webmdhealth.com/SoapService/SoapService. +asmx') -> on_action(sub{sprintf '%s', @_ }); my $data = SOAP::Data->name('data' => '<some XML data>')->type('string +')->uri('https://www.webmdhealth.com/SoapService/SoapService'); $result = $s->PerformUpdate($data)->result;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using Soap to pass x509 certificate
by Anonymous Monk on Sep 15, 2004 at 04:15 UTC | |
by Hammy (Scribe) on Sep 15, 2004 at 04:43 UTC | |
by Anonymous Monk on Sep 15, 2004 at 05:06 UTC | |
by Hammy (Scribe) on Sep 15, 2004 at 05:23 UTC | |
by matija (Priest) on Sep 15, 2004 at 05:47 UTC | |
|