Java Reference
In-Depth Information
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="GatewayService"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
targetNamespace="http://ns.soacookbook.com/gateway"
xmlns:tns="http://ns.soacookbook.com/gateway">
<types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://ns.soacookbook.com/gateway">
<xs:element name="gatewayRequest" type="xs:string" />
<xs:element name="gatewayResponse" type="xs:string" />
</xs:schema>
</types>
<message name="gatewayRequest">
<part name="parameters" element="tns:gatewayRequest"></part>
</message>
<message name="gatewayResponse">
<part name="parameters" element="tns:gatewayResponse"></part>
</message>
<portType name="Gateway">
<operation name="authorize">
<input message="tns:gatewayRequest"></input>
<output message="tns:gatewayResponse"></output>
</operation>
</portType>
<binding name="GatewayPortBinding" type="tns:Gateway">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"
style="document"></soap:binding>
<operation name="authorize">
<soap:operation soapAction=""></soap:operation>
<input>
<soap:body use="literal"></soap:body>
</input>
<output>
<soap:body use="literal"></soap:body>
</output>
</operation>
</binding>
<service name="GatewayService">
<port name="GatewayPort" binding="tns:GatewayPortBinding">
<soap:address
Search WWH ::




Custom Search