Hi,
I'm having trouble figuring out how to send back variable complex types. I need to return for example:
<xsd:complexType name="Display">
<xsd:Input>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="value" type="xsd:string"/>
</xsd:Input>
</xsd:complexType>
|
This works fine and dandy but I need to figure out how to do if there is more than one item to return eg:
<xsd:complexType name="Display">
<xsd:Input>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="value" type="xsd:string"/>
</xsd:Input>
<xsd:Input>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="value" type="xsd:string"/>
</xsd:Input>
</xsd:complexType>
|
I also need to do the same same for receiving, IE incoming 'Input' could be variable in numbers. Is this possbile using NuSoap?