|
I tried to have something like this in request:
test_type => [
{
item => {...},
},
{
item => {...},
},
],
basically an array ref of hash refs. The request it sends looks like:
<test_type>
<item>
...
</item>
</test_type>
<test_type>
<item>
...
</item>
</test_type>
But what I really want is:
<test_type>
<item>
...
</item>
<item>
...
</item>
</test_type>
So is it a bug in SOAP::WSDL?
|