Describing a string array in a wsdl file
问题 I'm using the globus toolkit for a project. In my service i have a resource: a string array. I want to get this resource from an Android client. How can I do that? How can I describe in the wsdl file the type "array of string"? Thank you. 回答1: I guess you're looking for this <complexType name='ArrayOfString'> <sequence> <element name='item' type='xsd:string' maxOccurs='unbounded'/> </sequence> </complexType> Source: http://www.activebpel.org/samples/samples-2/BPEL_Samples/Resources/Docs