Hello guys, I'm having a hard time figuring out the schema for an array of objects that should be later passed to/from the web service. -------------------- <types> <xsd:schema targetNamespace="http://example.com/example" xmlns="http://www.w3.org/2001/XMLSchema"> <xsd:complexType name="Obj"> <xsd:element name="property1" type="xsd:String" /> <xsd:element name="property2" type="int" /> <xsd:element name="property3" type="int" /> <xsd:element name="property4" type="int" /> </xsd:complexType> </types> <message name='nameOfObject'> <part name='symbol' type='xsd:Obj'/> </message> -------------------------- This would be great for passing an object, but what should be the way to describe an array of objects? Thanks! -- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php