You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@ws.apache.org by makapur <ma...@winfoware.com> on 2002/07/12 13:14:02 UTC

Parts in message

Hi,


Is it valid to have two parts in the Response/Out message.

Example - wsdl file(partial) 

<message name="getTestStatusInput">
    <part name="Id" type="xsd:string"/>
    <part name="testId" type="xsd:string"/>
</message>
<message name="getTestStatusOutput">
    <part name="status" type="xsd:string"/>
    <part name="outcome" type="xsd:string"/>
</message>

<portType name="MTTestPortType">
    <operation name="getTestStatus">
        <input name="getTestStatusInput" message="tns:getTestStatusInput"/>
        <output name="getTestStatusOutput" message="tns:getTestStatusOutput"/>
    </operation>
</portType>
<binding>.........

Is it possible to have like this?
If so how to implement this?

Thanks in advance

regards
Rajakumar.