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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="ecc"
targetNamespace="urn:ecc"
xmlns:tns="urn:ecc"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ecc="urn:ecc"
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:MIME="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:DIME="http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/"
xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<schema targetNamespace="urn:ecc"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ecc="urn:ecc"
xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/>
<!-- operation request element -->
<element name="ServerExit">
<complexType>
</complexType>
</element>
<!-- operation response element -->
<element name="Response">
<complexType>
<sequence>
<element name="ErrorCode" type="xsd:int" minOccurs="1" maxOccurs="1"/>
<element name="ErrorMessage" type="xsd:string" minOccurs="1" maxOccurs="1"/>
</sequence>
</complexType>
</element>
</schema>
</types>
<message name="ServerExit">
<part name="parameters" element="ecc:ServerExit"/>
</message>
<message name="Response">
<part name="parameters" element="ecc:Response"/>
</message>
<portType name="eccPortType">
<operation name="ServerExit">
<documentation>Service definition of function ecc__ServerExit</documentation>
<input message="tns:ServerExit"/>
<output message="tns:Response"/>
</operation>
</portType>
<binding name="ecc" type="tns:eccPortType">
<SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="ServerExit">
<SOAP:operation soapAction=""/>
<input>
<SOAP:body parts="parameters" use="encoded"/>
</input>
<output>
<SOAP:body parts="parameters" use="encoded"/>
</output>
</operation>
</binding>
<service name="ecc">
<documentation>gSOAP 2.7.16 generated service definition</documentation>
<port name="ecc" binding="tns:ecc">
<SOAP:address location="http://localhost:8061"/>
</port>
</service>
</definitions>
|