Hammy has asked for the wisdom of the Perl Monks concerning the following question:
The error I receive is below:use SOAP::Lite +trace; my $s = SOAP::Lite -> uri('http://myURL') -> proxy('https://myURL/myService.asmx') -> on_action(sub{sprintf 'http://myURL/%s', $_[1] }); my $var = SOAP::Data->new(name => 'id', value => "123", type =>'xsi:st +ring'); my $SoapCall = $s->Method($var); my $result = $SoapCall->result;
I am trying to find the version of the modules but the methods I found did not work. Perl -MMODULE -e 'Print SOAP::Lite' gives me - Can't locate MODULE.pm. The script instmodsh gives a syntax error on both boxes.Server was unable to process request. --> Object reference not set +to an instance of an object.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP Lite Object reference Error
by almut (Canon) on Jun 03, 2009 at 21:54 UTC | |
by ikegami (Patriarch) on Jun 03, 2009 at 22:21 UTC | |
by Anonymous Monk on Jun 03, 2009 at 23:11 UTC |