forked from AlexanderYastrebov/django-qiwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIShopClientWS.wsdl
55 lines (55 loc) · 2.59 KB
/
IShopClientWS.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
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="IShopClientWSService" targetNamespace="http://client.ishop.mw.ru/" xmlns:tns="http://client.ishop.mw.ru/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://client.ishop.mw.ru/" attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://client.ishop.mw.ru/">
<xs:element name="updateBill" type="tns:updateBill"/>
<xs:element name="updateBillResponse" type="tns:updateBillResponse"/>
<xs:complexType name="updateBill">
<xs:sequence>
<xs:element minOccurs="0" name="login" type="xs:string"/>
<xs:element minOccurs="0" name="password" type="xs:string"/>
<xs:element minOccurs="0" name="txn" type="xs:string"/>
<xs:element name="status" type="xs:int"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="updateBillResponse">
<xs:sequence>
<xs:element name="updateBillResult" type="xs:int"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</wsdl:types>
<wsdl:message name="updateBillResponse">
<wsdl:part name="parameters" element="tns:updateBillResponse">
</wsdl:part>
</wsdl:message>
<wsdl:message name="updateBill">
<wsdl:part name="parameters" element="tns:updateBill">
</wsdl:part>
</wsdl:message>
<wsdl:portType name="IShopClientWS">
<wsdl:operation name="updateBill">
<wsdl:input name="updateBill" message="tns:updateBill">
</wsdl:input>
<wsdl:output name="updateBillResponse" message="tns:updateBillResponse">
</wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="IShopClientWSServiceSoapBinding" type="tns:IShopClientWS">
<soap12:binding style="document" transport="http://www.w3.org/2003/05/soap/bindings/HTTP/"/>
<wsdl:operation name="updateBill">
<soap12:operation soapAction="" style="document"/>
<wsdl:input name="updateBill">
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output name="updateBillResponse">
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="IShopClientWSService">
<wsdl:port name="IShopClientWSPort" binding="tns:IShopClientWSServiceSoapBinding">
<soap12:address location="http://localhost:9090/IShopClientWSPort"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>