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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="Logging"
targetNamespace="http://soapaws/Logging_def/"
xmlns:tns="http://soapaws/Logging_def/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:n1="http://soapaws/Standard_pkg/"
xmlns:n2="http://soapaws/Log4ada_pkg/">
<!-- Generated by AWS/Ada2WSDL v1.3.1
on Thursday 27 June 2013 at 17:35:27 -->
<wsdl:types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://soapaws/Log4ada_pkg/">
<xsd:simpleType name="Level_Type"
targetNamespace="http://soapaws/Log4ada_pkg/">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="All_Level"/>
<xsd:enumeration value="Debug"/>
<xsd:enumeration value="Info"/>
<xsd:enumeration value="Warn"/>
<xsd:enumeration value="Error"/>
<xsd:enumeration value="Fatal"/>
<xsd:enumeration value="Off"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
</wsdl:types>
<wsdl:message name="Create_File_Log_Request">
<wsdl:part name="Name_ID" type="xsd:string"/>
</wsdl:message>
<wsdl:message name="Close_File_Log_Request">
<wsdl:part name="Name_ID" type="xsd:string"/>
</wsdl:message>
<wsdl:message name="Append_Log_Request">
<wsdl:part name="Name_ID" type="xsd:string"/>
<wsdl:part name="Message" type="xsd:string"/>
<wsdl:part name="Level" type="n2:Level_Type"/>
</wsdl:message>
<wsdl:portType name="Logging_PortType">
<wsdl:operation name="Create_File_Log">
<wsdl:input message="tns:Create_File_Log_Request"/>
</wsdl:operation>
<wsdl:operation name="Close_File_Log">
<wsdl:input message="tns:Close_File_Log_Request"/>
</wsdl:operation>
<wsdl:operation name="Append_Log">
<wsdl:input message="tns:Append_Log_Request"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="Logging_Binding" type="tns:Logging_PortType">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Create_File_Log">
<soap:operation soapAction="Create_File_Log"/>
<wsdl:input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://soapaws/Logging_def/"
use="encoded"/>
</wsdl:input>
<wsdl:output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://soapaws/Logging_def/"
use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="Close_File_Log">
<soap:operation soapAction="Close_File_Log"/>
<wsdl:input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://soapaws/Logging_def/"
use="encoded"/>
</wsdl:input>
<wsdl:output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://soapaws/Logging_def/"
use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="Append_Log">
<soap:operation soapAction="Append_Log"/>
<wsdl:input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://soapaws/Logging_def/"
use="encoded"/>
</wsdl:input>
<wsdl:output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://soapaws/Logging_def/"
use="encoded"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="Logging_Service">
<wsdl:port name="Logging_Port" binding="tns:Logging_Binding">
<soap:address location="http://localhost:4242"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
|