SOAP-WSDL - Re: noob using soap-wsdl for first time

Posted on Wed Apr 23 00:28:09 2008 by mkutter in response to 7721 (See the whole thread of 3)
Re: noob using soap-wsdl for first time
SOAP::WSDL takes care of the ordering, but you need to put a hash reference in there:
$interface->fsPublic_SQL(\%parm);
Or just create the parameters as hash ref:
$parm = { ... }; $interface->fsPublic_SQL($parm);
Martin
Direct Responses: 7723 | Write a response