← Prev in month ← Prev in thread
Next in thread → Next in month →

For what is "parameterOrder" in a WSDL?

From
Ben Stover <>
To
xml-dev <>
Date
2008-10-28T19:52:29Z
ID
<>
Thread
For what is "parameterOrder" in a WSDL?
Assume the following part of a WSDL definition:

  <message name="Ws_myRequest">
    <part element="tns:myRequest" name="myRequest"/>
  </message>
  <portType name="Ws">
    <operation name="myWs" parameterOrder="myRequest">
      <input message="tns:Ws_myRequest"/>
      <output message="tns:Ws_myResponse"/>
    </operation>
  </portType>


For what stands the parameter "parameterOrder" ?
as the message "Ws_myRequest" shows there is only 1 parameter.
So can I omit this "parameterOrder"?

What if I would have two elements like in:

  <message name="Ws_myRequest">
    <part element="tns:myRequest1" name="myRequest3"/>
    <part element="tns:myRequest2" name="myRequest4"/>
  </message>

How could the "parameterOrder"  look like in this case?

Ben
← Prev in month ← Prev in thread
Next in thread → Next in month →