ecuguru has asked for the wisdom of the Perl Monks concerning the following question:
With the following Soap function:document/literal support is EXPERIMENTAL in SOAP::Lite at /Library/Per +l/5.8.6/SOAP/Lite.pm line 2818. Can't call method "name" without a package or object reference at /Lib +rary/Perl/5.8.6/SOAP/Lite.pm line 2980.
This code runs great on one box running Perl 5.8.1 and Soap Lite .60, and on the other I keep getting the above error with Perl 5.8.6 and Soap Lite .67.sub soapGet(){ my $service = SOAP::Lite -> service('http://ip/Info.asmx?WSDL'); $service -> GetHospitalInfo(); my $som = $service -> call; if ($som->fault) { print "SOAP FAULT:\n"; print Dumper $som; exit; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Soap Lite Error
by jhourcle (Prior) on Mar 15, 2006 at 15:16 UTC | |
by ecuguru (Monk) on Mar 15, 2006 at 19:13 UTC | |
|
Re: Soap Lite Error
by chargrill (Parson) on Mar 15, 2006 at 13:27 UTC | |
by ecuguru (Monk) on Mar 15, 2006 at 18:51 UTC | |
|
Re: Soap Lite Error
by Herkum (Parson) on Mar 15, 2006 at 17:30 UTC |