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

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

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

javascript - Restarting Supervisor and effect on FlaskSocketIO -