This repository was archived by the owner on Oct 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.wsdl
52 lines (52 loc) · 2.39 KB
/
hello.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
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://learnwebservices.com/services/hello" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="HelloEndpointService" targetNamespace="http://learnwebservices.com/services/hello">
<wsdl:types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://learnwebservices.com/services/hello" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://learnwebservices.com/services/hello" version="1.0">
<xs:complexType name="helloRequest">
<xs:sequence>
<xs:element name="Name" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="helloResponse">
<xs:sequence>
<xs:element name="Message" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="HelloRequest" nillable="true" type="helloRequest"/>
<xs:element name="HelloResponse" nillable="true" type="helloResponse"/>
</xs:schema>
</wsdl:types>
<wsdl:message name="SayHelloResponse">
<wsdl:part element="tns:HelloResponse" name="HelloResponse">
</wsdl:part>
</wsdl:message>
<wsdl:message name="SayHello">
<wsdl:part element="tns:HelloRequest" name="HelloRequest">
</wsdl:part>
</wsdl:message>
<wsdl:portType name="HelloEndpoint">
<wsdl:operation name="SayHello">
<wsdl:input message="tns:SayHello" name="SayHello">
</wsdl:input>
<wsdl:output message="tns:SayHelloResponse" name="SayHelloResponse">
</wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="HelloEndpointServiceSoapBinding" type="tns:HelloEndpoint">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="SayHello">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="SayHello">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="SayHelloResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="HelloEndpointService">
<wsdl:port binding="tns:HelloEndpointServiceSoapBinding" name="HelloEndpointPort">
<soap:address location="https://apps.learnwebservices.com:443/services/hello"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>