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
|
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="GetCasService"
targetNamespace="http://simple.doc.net/sd"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<types>
<schema>
<element name="xElement" type="xsd:int"/>
<element name="yElement" type="xsd:float"/>
</schema>
</types>
<message name="myMethodRequest">
<part name="x" element="xElement"/>
<part name="y" element="yElement"/>
</message>
<message name="empty"/>
<portType name="PT">
<operation name="call">
<input message="myMethodRequest"/>
<output message="empty"/>
</operation>
</portType>
<binding name="SimpleDocBinding" type="simpledoc">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="call">
<soap:operation soapAction="http://me.here.net/call" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</operation>
</binding>
<wsdl:service name="SimpleDocService2">
<port name="SimpleDocPort" binding="SimpleDocBinding">
<soap:address location="http://localhost:1234" />
</port>
</wsdl:service>
</wsdl:definitions>
|