-
Notifications
You must be signed in to change notification settings - Fork 0
/
ns.wsdl
85 lines (76 loc) · 2.86 KB
/
ns.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
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="Service"
targetNamespace="http://tempuri.org/ns.xsd/Service.wsdl"
xmlns:tns="http://tempuri.org/ns.xsd/Service.wsdl"
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:ns="http://tempuri.org/ns.xsd"
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:HTTP="http://schemas.xmlsoap.org/wsdl/http/"
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="http://tempuri.org/ns.xsd"
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:ns="http://tempuri.org/ns.xsd"
xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="unqualified"
attributeFormDefault="unqualified">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<!-- operation request element -->
<element name="hello">
<complexType>
<sequence>
<element name="input" type="xsd:double" minOccurs="1" maxOccurs="1"/><!-- ns__hello::input -->
</sequence>
</complexType>
</element>
<!-- operation response element -->
<element name="helloResponse">
<complexType>
<sequence>
<element name="output" type="xsd:double" minOccurs="1" maxOccurs="1"/><!-- ns__hello::output -->
</sequence>
</complexType>
</element>
</schema>
</types>
<message name="helloRequest">
<part name="Body" element="ns:hello"/><!-- ns__hello::ns__hello -->
</message>
<message name="helloResponse">
<part name="Body" element="ns:helloResponse"/>
</message>
<portType name="ServicePortType">
<operation name="hello">
<documentation>Service definition of function ns__hello</documentation>
<input message="tns:helloRequest"/>
<output message="tns:helloResponse"/>
</operation>
</portType>
<binding name="Service" type="tns:ServicePortType">
<SOAP:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="hello">
<SOAP:operation soapAction=""/>
<input>
<SOAP:body use="literal" parts="Body"/>
</input>
<output>
<SOAP:body use="literal" parts="Body"/>
</output>
</operation>
</binding>
<service name="Service">
<documentation>gSOAP 2.8.60 generated service definition</documentation>
<port name="Service" binding="tns:Service">
<SOAP:address location="http://localhost:80"/>
</port>
</service>
</definitions>