Link to home
Start Free TrialLog in
Avatar of ank9
ank9

asked on

XSD: Return array

I am writing an XSD, in which I need to define an operation which would return all the IDs. since the no. of IDs can be more than one, this operation needs to return an array. For this I need to define a type. If I do this

<xsd:complexType name="getResumeIdsResponse">
                              <xsd:sequence>      
                              <xsd:element name="resumeIds" type="xsd:string" />                                
                        </xsd:sequence>                      
                  </xsd:complexType>
It would be able to return only 1 ID. Is there a way to return a String array?

Thank you
ASKER CERTIFIED SOLUTION
Avatar of shaheedha
shaheedha
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Gertone (Geert Bormans)
Gertone (Geert Bormans)
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial