Thread Umgang mit SOAP-response
(2 answers)
Opened by subTH at 2008-06-09 14:32
Wie wäre es denn mit der Verwendung eines dafür gedachten Modules wie
![]() Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 use SOAP::Lite; use SOAP::Data qw/name/; my $soap = new SOAP::Lite( uri => 'urn:sap-com:document:sap:rfc:functions', proxy => 'http://wherever.it.lives.example' ); my $som = $soap->SAP_WAPI_START_WORKFLOW( name(TASK => $wf_task), name(USER => $wf_user) ); die $som->faultdetail if ($som->fault); say $som->result; When C++ is your hammer, every problem looks like your thumb.
|