SOAP-WSDL - Re: Question about generated type module from wsdl2perl

Posted on Tue Jun 24 22:57:38 2008 by mkutter in response to 8155 (See the whole thread of 4)
Re: Question about generated type module from wsdl2perl
SOAP::WSDL expects list refs to be at the last possible position. Thus, the following is interpreted as a list of test_type elements:
test_type => [ { item => {...}, }, { item => {...}, }, ],
To make it send a list of item elements, try
test_type => { item => [ ... ] }

Martin
Direct Responses: 8159 | Write a response