Commit 300866918afe7e917ae8abe87cccb38729676f28
0 parents
Exists in
master
wsdl
Showing
1 changed file
with
161 additions
and
0 deletions
Show diff stats
| 1 | +++ a/file/NewWSDLFile.wsdl | |
| ... | ... | @@ -0,0 +1,161 @@ |
| 1 | +<!-- (c) Mink Mew Khing 2020-06-09 test soap wsdl Online WSDL 1.1 SOAP generator | |
| 2 | + 0.2 Julien Blitte --> | |
| 3 | +<definitions xmlns:tns="us.sma.wsdl" | |
| 4 | + xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | |
| 5 | + xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="us.sma.xsd" | |
| 6 | + xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" | |
| 7 | + xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | |
| 8 | + xmlns="http://schemas.xmlsoap.org/wsdl/" name="test soap wsdl" | |
| 9 | + targetNamespace="us.sma.wsdl"> | |
| 10 | + <!-- definition of datatypes --> | |
| 11 | + <types> | |
| 12 | + <schema xmlns="http://www.w3.org/2000/10/XMLSchema" | |
| 13 | + targetNamespace="us.sma.xsd"> | |
| 14 | + <element name="nickname"> | |
| 15 | + <complexType> | |
| 16 | + <all> | |
| 17 | + <element name="value" type="string" /> | |
| 18 | + </all> | |
| 19 | + </complexType> | |
| 20 | + </element> | |
| 21 | + <element name="message"> | |
| 22 | + <complexType> | |
| 23 | + <all> | |
| 24 | + <element name="value" type="string" /> | |
| 25 | + </all> | |
| 26 | + </complexType> | |
| 27 | + </element> | |
| 28 | + <element name="resultcode"> | |
| 29 | + <complexType> | |
| 30 | + <all> | |
| 31 | + <element name="value" type="int" /> | |
| 32 | + </all> | |
| 33 | + </complexType> | |
| 34 | + </element> | |
| 35 | + <element name="number"> | |
| 36 | + <complexType> | |
| 37 | + <all> | |
| 38 | + <element name="value" type="int" /> | |
| 39 | + </all> | |
| 40 | + </complexType> | |
| 41 | + </element> | |
| 42 | + </schema> | |
| 43 | + </types> | |
| 44 | + <!-- response messages --> | |
| 45 | + <message name="returns_resultcode"> | |
| 46 | + <part name="resultcode" type="xsd:resultcode" /> | |
| 47 | + </message> | |
| 48 | + <message name="returns_number"> | |
| 49 | + <part name="number" type="xsd:number" /> | |
| 50 | + </message> | |
| 51 | + <message name="returns_message"> | |
| 52 | + <part name="message" type="xsd:message" /> | |
| 53 | + </message> | |
| 54 | + <!-- request messages --> | |
| 55 | + <message name="post_message"> | |
| 56 | + <part name="nickname" type="xsd:nickname" /> | |
| 57 | + <part name="message" type="xsd:message" /> | |
| 58 | + </message> | |
| 59 | + <message name="get_number_of_messages"> | |
| 60 | + <part name="nickname" type="xsd:nickname" /> | |
| 61 | + </message> | |
| 62 | + <message name="retrieve_message"> | |
| 63 | + <part name="nickname" type="xsd:nickname" /> | |
| 64 | + <part name="number" type="xsd:number" /> | |
| 65 | + </message> | |
| 66 | + <message name="retrieve_last_message"> | |
| 67 | + <part name="nickname" type="xsd:nickname" /> | |
| 68 | + <part name="number" type="xsd:number" /> | |
| 69 | + </message> | |
| 70 | + <!-- server's services --> | |
| 71 | + <portType name="my SOAP"> | |
| 72 | + <operation name="post_message"> | |
| 73 | + <input message="tns:post_message" /> | |
| 74 | + <output message="tns:returns_resultcode" /> | |
| 75 | + </operation> | |
| 76 | + <operation name="get_number_of_messages"> | |
| 77 | + <input message="tns:get_number_of_messages" /> | |
| 78 | + <output message="tns:returns_number" /> | |
| 79 | + </operation> | |
| 80 | + <operation name="retrieve_message"> | |
| 81 | + <input message="tns:retrieve_message" /> | |
| 82 | + <output message="tns:returns_message" /> | |
| 83 | + </operation> | |
| 84 | + <operation name="retrieve_last_message"> | |
| 85 | + <input message="tns:retrieve_last_message" /> | |
| 86 | + <output message="tns:returns_message" /> | |
| 87 | + </operation> | |
| 88 | + </portType> | |
| 89 | + <!-- server encoding --> | |
| 90 | + <binding name="my SOAP_webservices" type="tns:my SOAP"> | |
| 91 | + <soap:binding style="rpc" | |
| 92 | + transport="http://schemas.xmlsoap.org/soap/http" /> | |
| 93 | + <operation name="post_message"> | |
| 94 | + <soap:operation | |
| 95 | + soapAction="urn:xmethods-delayed-quotes#post_message" /> | |
| 96 | + <input> | |
| 97 | + <soap:body use="encoded" | |
| 98 | + namespace="urn:xmethods-delayed-quotes" | |
| 99 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 100 | + </input> | |
| 101 | + <output> | |
| 102 | + <soap:body use="encoded" | |
| 103 | + namespace="urn:xmethods-delayed-quotes" | |
| 104 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 105 | + </output> | |
| 106 | + </operation> | |
| 107 | + <operation name="get_number_of_messages"> | |
| 108 | + <soap:operation | |
| 109 | + soapAction="urn:xmethods-delayed-quotes#get_number_of_messages" /> | |
| 110 | + <input> | |
| 111 | + <soap:body use="encoded" | |
| 112 | + namespace="urn:xmethods-delayed-quotes" | |
| 113 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 114 | + </input> | |
| 115 | + <output> | |
| 116 | + <soap:body use="encoded" | |
| 117 | + namespace="urn:xmethods-delayed-quotes" | |
| 118 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 119 | + </output> | |
| 120 | + </operation> | |
| 121 | + <operation name="retrieve_message"> | |
| 122 | + <soap:operation | |
| 123 | + soapAction="urn:xmethods-delayed-quotes#retrieve_message" /> | |
| 124 | + <input> | |
| 125 | + <soap:body use="encoded" | |
| 126 | + namespace="urn:xmethods-delayed-quotes" | |
| 127 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 128 | + </input> | |
| 129 | + <output> | |
| 130 | + <soap:body use="encoded" | |
| 131 | + namespace="urn:xmethods-delayed-quotes" | |
| 132 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 133 | + </output> | |
| 134 | + </operation> | |
| 135 | + <operation name="retrieve_last_message"> | |
| 136 | + <soap:operation | |
| 137 | + soapAction="urn:xmethods-delayed-quotes#retrieve_last_message" /> | |
| 138 | + <input> | |
| 139 | + <soap:body use="encoded" | |
| 140 | + namespace="urn:xmethods-delayed-quotes" | |
| 141 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 142 | + </input> | |
| 143 | + <output> | |
| 144 | + <soap:body use="encoded" | |
| 145 | + namespace="urn:xmethods-delayed-quotes" | |
| 146 | + encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| 147 | + </output> | |
| 148 | + </operation> | |
| 149 | + </binding> | |
| 150 | + <!-- access to service provider --> | |
| 151 | + <service name="sma"> | |
| 152 | + <port name="sma_0" binding="my SOAP_webservices"> | |
| 153 | + <soap:address | |
| 154 | + location="HTTP://10.1.2.144:1880/icrm/sendoffer1" /> | |
| 155 | + </port> | |
| 156 | + <port name="sma_1" binding="my SOAP_webservices"> | |
| 157 | + <soap:address | |
| 158 | + location="HTTP://10.1.2.65:46400/icrm/sendoffer" /> | |
| 159 | + </port> | |
| 160 | + </service> | |
| 161 | +</definitions> | |
| 0 | 162 | \ No newline at end of file | ... | ... |