Hello,
I am trying to generate a wsdl that would look like this - 

  <message name="AuthenticateSoapIn">
    <part name="parameters" element="s0:Authenticate" />
  </message>
  <message name="AuthenticateSoapOut">
    <part name="parameters" element="s0:AuthenticateResponse" />
  </message>
  <message name="AuthenticateHeader">
    <part name="Header" element="s0:Header" />
  </message>
  <portType name="PTASoap">
    <operation name="Authenticate">
      <documentation>Allows clients to authenticate between our platform and
theirs.</documentation>
      <input message="s0:AuthenticateSoapIn" />
      <output message="s0:AuthenticateSoapOut" />
    </operation>
  </portType>
  <binding name="PTASoap" type="s0:PTASoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http";
style="document" />
    <operation name="Authenticate">
      <soap:operation soapAction="www.abc.com/webservices/pta#Authenticate"
style="document" />
      <input>
        <soap:body use="literal" />
        <soap:header message="s0:AuthenticateHeader" part="Header" 
use="literal" />
      </input>
      <output>
        <soap:body use="literal" />
        <soap:header message="s0:AuthenticateHeader" part="Header" 
use="literal" />
      </output>
    </operation>
  </binding>

I was able to add header information to the input section for the Authenticate
operation using the services.xml, but I am at a loss as to how I could add this
to the output section. My services.xml currently looks as follows:

<style>document</style>         
<method name="Authenticate" operationName="Authenticate">
<parameter index="0" class="Header" header="true" />
<parameter index="1" class="Authenticate" />
</method>

Any suggestions or solutions would help at this point....

Thanks
Amit


---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to