Blame view

file/NewWSDLFile.wsdl 4.99 KB
30086691   Warisara Jaimuang   wsdl
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!-- (c) Mink Mew Khing 2020-06-09 test soap wsdl Online WSDL 1.1 SOAP generator 
	0.2 Julien Blitte -->
<definitions xmlns:tns="us.sma.wsdl"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="us.sma.xsd"
	xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns="http://schemas.xmlsoap.org/wsdl/" name="test soap wsdl"
	targetNamespace="us.sma.wsdl">
	<!-- definition of datatypes -->
	<types>
		<schema xmlns="http://www.w3.org/2000/10/XMLSchema"
			targetNamespace="us.sma.xsd">
			<element name="nickname">
				<complexType>
					<all>
						<element name="value" type="string" />
					</all>
				</complexType>
			</element>
			<element name="message">
				<complexType>
					<all>
						<element name="value" type="string" />
					</all>
				</complexType>
			</element>
			<element name="resultcode">
				<complexType>
					<all>
						<element name="value" type="int" />
					</all>
				</complexType>
			</element>
			<element name="number">
				<complexType>
					<all>
						<element name="value" type="int" />
					</all>
				</complexType>
			</element>
		</schema>
	</types>
	<!-- response messages -->
	<message name="returns_resultcode">
		<part name="resultcode" type="xsd:resultcode" />
	</message>
	<message name="returns_number">
		<part name="number" type="xsd:number" />
	</message>
	<message name="returns_message">
		<part name="message" type="xsd:message" />
	</message>
	<!-- request messages -->
	<message name="post_message">
		<part name="nickname" type="xsd:nickname" />
		<part name="message" type="xsd:message" />
	</message>
	<message name="get_number_of_messages">
		<part name="nickname" type="xsd:nickname" />
	</message>
	<message name="retrieve_message">
		<part name="nickname" type="xsd:nickname" />
		<part name="number" type="xsd:number" />
	</message>
	<message name="retrieve_last_message">
		<part name="nickname" type="xsd:nickname" />
		<part name="number" type="xsd:number" />
	</message>
	<!-- server's services -->
	<portType name="my SOAP">
		<operation name="post_message">
			<input message="tns:post_message" />
			<output message="tns:returns_resultcode" />
		</operation>
		<operation name="get_number_of_messages">
			<input message="tns:get_number_of_messages" />
			<output message="tns:returns_number" />
		</operation>
		<operation name="retrieve_message">
			<input message="tns:retrieve_message" />
			<output message="tns:returns_message" />
		</operation>
		<operation name="retrieve_last_message">
			<input message="tns:retrieve_last_message" />
			<output message="tns:returns_message" />
		</operation>
	</portType>
	<!-- server encoding -->
	<binding name="my SOAP_webservices" type="tns:my SOAP">
		<soap:binding style="rpc"
			transport="http://schemas.xmlsoap.org/soap/http" />
		<operation name="post_message">
			<soap:operation
				soapAction="urn:xmethods-delayed-quotes#post_message" />
			<input>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</input>
			<output>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</output>
		</operation>
		<operation name="get_number_of_messages">
			<soap:operation
				soapAction="urn:xmethods-delayed-quotes#get_number_of_messages" />
			<input>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</input>
			<output>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</output>
		</operation>
		<operation name="retrieve_message">
			<soap:operation
				soapAction="urn:xmethods-delayed-quotes#retrieve_message" />
			<input>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</input>
			<output>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</output>
		</operation>
		<operation name="retrieve_last_message">
			<soap:operation
				soapAction="urn:xmethods-delayed-quotes#retrieve_last_message" />
			<input>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</input>
			<output>
				<soap:body use="encoded"
					namespace="urn:xmethods-delayed-quotes"
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</output>
		</operation>
	</binding>
	<!-- access to service provider -->
	<service name="sma">
		<port name="sma_0" binding="my SOAP_webservices">
			<soap:address
				location="HTTP://10.1.2.144:1880/icrm/sendoffer1" />
		</port>
30086691   Warisara Jaimuang   wsdl
156
157
		<port name="sma_1" binding="my SOAP_webservices">
			<soap:address