|
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
|