Hammy has asked for the wisdom of the Perl Monks concerning the following question:
use XML::Simple; use SOAP::Lite +trace; my $data = SOAP::Data->name('data' => "$xml")->type('string')->uri('') +; my $s = SOAP::Lite -> uri ('http://di.wellmed.com/SoapService') -> proxy ('https://di.webmdhealth.com/SoapService/SoapService.asmx') -> on_action(sub{join '/', @_}) -> on_fault(sub{}); $result = $s->PerformUpdate($data)->result;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Error running SOAP statement
by mda2 (Hermit) on Feb 23, 2006 at 03:58 UTC | |
by Hammy (Scribe) on Feb 23, 2006 at 04:26 UTC | |
by mda2 (Hermit) on Feb 24, 2006 at 03:04 UTC |