Hi, a 2d string is no XML-Schema-standard type and because of this you would have to do your own serialization, as for all home-grown-datastructures likewise. Anyway, every 2d string is made up of some number of ordinary strings, isnt it? Cheers Wolfgang
--- On Sun, 6/6/10, Chinmoy Chakraborty <[email protected]> wrote: From: Chinmoy Chakraborty <[email protected]> Subject: WSDL for 1 and 2d string array To: [email protected], [email protected] Date: Sunday, June 6, 2010, 2:03 PM Hello everybody, I have two services, one of them returns 1d string array (String[]) and the other one returns 2d string array (String[][]). I noticed the invokeResponse element in WSDL is same for both of them: 1D Array:.......<xs:element name="invokeResponse"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element>....2D Array:...<xs:element name="invokeResponse"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element>... Could anybody please explain this? Chinmoy
