I'm a little leary of this definition in the schema:
<s:complexType name="ArrayOfAnyType">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="anyType"
nillable="true" />
</s:sequence>
</s:complexType>
This defines an *element* named "anyType" (rather than a *type* named
"anyType"), which I suspect could cause a lot of confusion.
I would suggest changing it to
<s:complexType name="ArrayOfAnyType">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="item" type="anyType"
nillable="true" />
</s:sequence>
</s:complexType>
Anne
On 4/13/05, Ramesh Vijayaraghavan <[EMAIL PROTECTED]> wrote:
>
> Also, please note that his looks like an array within an array, Array of
> variables enclosing an Array of anytype. Is this WSDL definition corrrect?
> Thanks,
>
>