|
Hello, i have a problem: I'm trying to execute some operations especified in a WSDL but i can't. My code is very short but there are problems.
#!perl -w
use SOAP::Lite;
my $soapclient = SOAP::Lite
->service('https:// ... .asmx?WSDL');
die "[Error]: Can't create the SOAP client. Reason: $!\n" unless $soapclient;
my $var1 = ...;
my $var2 = ...;
.
.
.
my $varN = ...;
my $result = $soapclient->MyOperation($var1, $var2, ..., $varN);
print Dumper($result);
Then, the result printed is an error response, it is, the comunication was successfully, but the parameters sent were invalid.
Can someone help me?
Thanks in advance
|