I am consuming a web service where parts of the WSDL looks like this:
<wsdl:message name='FooResponse'>
<wsdl:part name='parameters' element='tjsr:FooResponse' />
</wsdl:message>
The FooReponse type is defined in a separate xsd:
<xs:complexType name="FooResponse">
<xs:sequence>
<xs:element name="FooBaz" type="core:FooBaz" minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
Does the response always contain exactly one FooResponse, or can the message contain zero or multiple FooResponse?
(Yes, I understand that the FooResponse itself can contain any number of FooBaz)