-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvwsuserservice.wsdl
51 lines (45 loc) · 1.7 KB
/
dvwsuserservice.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
<definitions name="UserService"
targetNamespace="http://www.examples.com/wsdl/dvwsuserservice.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.examples.com/wsdl/dvwsuserservice.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<message name="UsernameRequest">
<part name="username" type="xsd:string"/>
</message>
<message name="UsernameResponse">
<part name="username" type="xsd:string"/>
</message>
<portType name="Username_PortType">
<operation name="Username">
<input message="tns:UsernameRequest"/>
<output message="tns:UsernameResponse"/>
</operation>
</portType>
<binding name="Username_Binding" type="tns:Username_PortType">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="Username">
<soap:operation soapAction="Username"/>
<input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:examples:usernameservice"
use="encoded"/>
</input>
<output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:examples:usernameservice"
use="encoded"/>
</output>
</operation>
</binding>
<service name="User_Service">
<documentation>WSDL File for DVWS User Service</documentation>
<port binding="tns:Username_Binding" name="Username_Port">
<soap:address
location="https://waf.brett1.com/dvwsuserservice/" />
</port>
</service>
</definitions>