web services - Repeating message part in WSDL message? -


i consuming web service parts of wsdl looks this:

<wsdl:message name='fooresponse'>     <wsdl:part name='parameters' element='tjsr:fooresponse' /> </wsdl:message> 

the fooreponse type defined in separate xsd:

<xs:complextype name="fooresponse">     <xs:sequence>         <xs:element name="foobaz" type="core:foobaz" minoccurs="0"             maxoccurs="unbounded"/>     </xs:sequence> </xs:complextype> 

does response contain 1 fooresponse, or can message contain 0 or multiple fooresponse?

(yes, understand fooresponse can contain number of foobaz)


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -