in reply to SOAP for Perl
Why is This is a multi-part message in MIME format... written to output.
Try to swith off 'trace' option:
use SOAP::Lite; # instead of SOAP::Lite +trace;
How can I modify the SOAP Envelope to produce the desired output
What is reason to do that. You can access to the responce data as normal Perl object:
Also, try to see here some useful information about SOAP::Lite.my $res = SOAP::Lite -> uri('http://www.3gpp.org/ftp/Specs/archive/23_series/23.140 +/schema/REL-5-MM7-1-2') -> on_action(sub { return "\"\""; }) -> proxy('http://10.236.137.7:10021/vas_soap') -> parts($ent); if($res->fault) { $self->errors($result); } else { my $reqObj = $res->result; print $reqObj->ServiceCode; #gold-sp33-im42 ... }
---
Schiller
It's only my opinion and it doesn't have pretensions of absoluteness!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: SOAP for Perl
by TomJones (Initiate) on Aug 03, 2004 at 14:41 UTC | |
by nite_man (Deacon) on Aug 04, 2004 at 07:55 UTC | |
by gellyfish (Monsignor) on Aug 05, 2004 at 12:55 UTC |