When I use the tSOAP package to create a client side
message, each array element in a complex type is
designated with an "item" element.
(this seems to be standard)
For Example:
<complexType>
<item>
<element1>data1</element1>
<element2>data2</element2>
</item>
<item>
<element1>data4</element1>
<element2>data5</element2>
</item>
</complexType>
It appears the .Net server is expecting each element to be
named instead of the element "item". Such as:
<complexType>
<arrayName>
<element1>data1</element1>
<element2>data2</element2>
</arrayName>
Is this correct, or am I missreading the sample request.
Is there a way to use the element names instead of "item"?
Thanks for any help.
--brian