1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<definitions name="ImportTestDefinition"
targetNamespace="http://test.globus.org/interface"
xmlns:tns="http://test.globus.org/interface"
xmlns:types="http://test.globus.org/types"
xmlns:bigType="http://test.globus.org/bigType"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<import namespace="http://test.globus.org/bigType"
location="../../types1/types2/importtypes.wsdl"/>
<message name="sendStringRequest">
<part name="myInput" type="types:StringType"/>
<part name="myBigInput" type="bigType:BigType"/>
</message>
<message name="sendStringResponse"/>
<portType name="ImportTestPortType">
<operation name="sendString">
<input message="tns:sendStringRequest"/>
<output message="tns:sendStringResponse"/>
</operation>
</portType>
<binding name="ImportTestSOAPBinding" type="tns:ImportTestPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sendString">
<soap:operation soapAction="http://test.globus.org/importtest#sendString"/>
<input>
<soap:body use="encoded" namespace="http://test.globus.org/importtest"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="http://test.globus.org/importtest"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
</definitions>
|