forked from multiOTP/multiotp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multiotp.wsdl
123 lines (111 loc) · 5.74 KB
/
multiotp.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
<?xml version="1.0" encoding="UTF-8"?>
<definitions targetNamespace="http://www.rcdevs.com/wsdl/openotp/"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="http://www.rcdevs.com/wsdl/openotp/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<message name="openotpSimpleLoginRequest">
<part name="username" type="xsd:string"/>
<part name="domain" type="xsd:string"/>
<part name="anyPassword" type="xsd:string"/>
<part name="client" type="xsd:string"/>
<part name="source" type="xsd:string"/>
<part name="settings" type="xsd:string"/>
</message>
<message name="openotpNormalLoginRequest">
<part name="username" type="xsd:string"/>
<part name="domain" type="xsd:string"/>
<part name="ldapPassword" type="xsd:string"/>
<part name="otpPassword" type="xsd:string"/>
<part name="client" type="xsd:string"/>
<part name="source" type="xsd:string"/>
<part name="settings" type="xsd:string"/>
<part name="options" type="xsd:string"/>
</message>
<message name="openotpLoginResponse">
<part name="code" type="xsd:integer"/>
<part name="message" type="xsd:string"/>
<part name="session" type="xsd:string"/>
<part name="data" type="xsd:string"/>
<part name="timeout" type="xsd:integer"/>
<part name="otpChallenge" type="xsd:string"/>
<part name="u2fChallenge" type="xsd:string"/>
</message>
<message name="openotpChallengeRequest">
<part name="username" type="xsd:string"/>
<part name="domain" type="xsd:string"/>
<part name="session" type="xsd:string"/>
<part name="otpPassword" type="xsd:string"/>
<part name="u2fResponse" type="xsd:string"/>
</message>
<message name="openotpChallengeResponse">
<part name="code" type="xsd:integer"/>
<part name="message" type="xsd:string"/>
<part name="data" type="xsd:string"/>
</message>
<message name="openotpStatusRequest"/>
<message name="openotpStatusResponse">
<part name="status" type="xsd:boolean"/>
<part name="message" type="xsd:string"/>
</message>
<portType name="openotpPortType">
<operation name="openotpSimpleLogin">
<input name="openotpSimpleLoginRequest" message="tns:openotpSimpleLoginRequest"/>
<output name="openotpSimpleLoginResponse" message="tns:openotpLoginResponse"/>
</operation>
<operation name="openotpNormalLogin">
<input name="openotpNormalLoginRequest" message="tns:openotpNormalLoginRequest"/>
<output name="openotpNormalLoginResponse" message="tns:openotpLoginResponse"/>
</operation>
<operation name="openotpLogin">
<input name="openotpLoginRequest" message="tns:openotpNormalLoginRequest"/>
<output name="openotpLoginResponse" message="tns:openotpLoginResponse"/>
</operation>
<operation name="openotpChallenge">
<input name="openotpChallengeRequest" message="tns:openotpChallengeRequest"/>
<output name="openotpChallengeResponse" message="tns:openotpChallengeResponse"/>
</operation>
<operation name="openotpStatus">
<input name="openotpStatusRequest" message="tns:openotpStatusRequest"/>
<output name="openotpStatusResponse" message="tns:openotpStatusResponse"/>
</operation>
</portType>
<binding name="openotpBinding" type="tns:openotpPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="openotpSimpleLogin">
<soap:operation soapAction="openotpSimpleLogin"/>
<input><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
<output><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
</operation>
<operation name="openotpNormalLogin">
<soap:operation soapAction="openotpNormalLogin"/>
<input><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
<output><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
</operation>
<operation name="openotpLogin">
<!-- Operation openotpLogin is an alias of openotpNormalLogin.
It is kept for backward compatibility with OpenOTP v1.0. -->
<soap:operation soapAction="openotpLogin"/>
<input><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
<output><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
</operation>
<operation name="openotpChallenge">
<soap:operation soapAction="openotpChallenge"/>
<input><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
<output><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
</operation>
<operation name="openotpStatus">
<soap:operation soapAction="openotpStatus"/>
<input><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
<output><soap:body use="encoded" namespace="urn:openotp" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
</operation>
</binding>
<service name="openotpService">
<port name="openotpPort" binding="tns:openotpBinding">
<soap:address location="http://localhost:8080/openotp/"/>
</port>
</service>
</definitions>