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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="TestWebService"
targetNamespace="http://aws.demo.com/getSrc"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:gc="http://aws.demo.com/getSrv"
xmlns:scall="http://aws.demo.com/scall"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:dt="http://aws.demo.com/dataTypes">
<!-- The WSDL types -->
<wsdl:types>
<xs:schema version="1.0" elementFormDefault="qualified">
<xs:import namespace="http://aws.demo.com/scall"
schemaLocation="scall.xsd" />
</xs:schema>
</wsdl:types>
<!-- The WSDL messages -->
<wsdl:message name="GetSrvWebService_Request">
<part name="wsGetSrvRequest" element="scall:WsGetSrvRequest" />
</wsdl:message>
<wsdl:message name="GetSrvWebService_Response">
<part name="wsGetSrvResponse" element="scall:WsGetSrvResponse" />
</wsdl:message>
<!-- The WSDL Port Types -->
<wsdl:portType name="ScallWebService">
<wsdl:operation name="wsGetSrvRequest">
<wsdl:input message="gc:GetSrvWebService_Request" />
<wsdl:output message="gc:GetSrvWebService_Response" />
</wsdl:operation>
</wsdl:portType>
<!-- The WSDL Bindings -->
<wsdl:binding name="ScallWebServiceBinding" type="gc:ScallWebService">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="wsGetSrvRequest">
<soap:operation soapAction="" />
<wsdl:input>
<soap:body use="encoded" />
</wsdl:input>
<wsdl:output>
<soap:body use="encoded" />
</wsdl:output>
</operation>
</wsdl:binding>
<!-- The WSDL Services -->
<wsdl:service name="ScallService">
<port name="ScallPort" binding="gc:ScallWebServiceBinding">
<soap:address location="http://localhost" />
</port>
</wsdl:service>
</wsdl:definitions>
|