SOAP-Lite - Use Web Services defined in a WSDL file

Posted on Thu Oct 25 18:30:25 2007 by carlos
Use Web Services defined in a WSDL file
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
Write a response