mms-client 1.10.0__py3-none-any.whl → 1.11.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,276 +1,276 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <wsdl:definitions
3
- name="MiWebService"
4
- targetNamespace="urn:abb.com:project/mms"
5
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
6
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
7
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
8
- xmlns:xmime="http://www.w3.org/2005/05/xmlmime"
9
- xmlns:types="urn:abb.com:project/mms/types"
10
- xmlns:tns="urn:abb.com:project/mms">
11
-
12
- <wsdl:documentation>
13
- This is the WSDL for MI based web service.
14
- History:
15
- 001 01-NOV-2019 RN Initial version.
16
- 002 02-FEB-2020 RM Modified to support Attachment downloads
17
- ResponseAttInfo and AttachmentType elements updated.
18
- 003 17-MAR-2021 RN Increase max attachment count to 40
19
-
20
- </wsdl:documentation>
21
-
22
- <!-- Types -->
23
- <wsdl:types>
24
- <xsd:schema targetNamespace="urn:abb.com:project/mms/types"
25
- xmlns:types="urn:abb.com:project/mms/types">
26
-
27
- <!-- Request Type -->
28
- <xsd:simpleType name="RequestType">
29
- <xsd:annotation>
30
- <xsd:documentation>
31
- Identifies the request type. Valid values are:
32
-
33
- mp.info:
34
- Market participant outbound information requests
35
- To be used when querying Market Status, Market Messages or
36
- the Market Participant Activity Log
37
-
38
- mp.market:
39
- Market participant market data requests (submit, query)
40
-
41
- mp.registration:
42
- Market participant registration requests
43
-
44
- mp.report:
45
- Market participant report requests (report list, report download)
46
- </xsd:documentation>
47
- </xsd:annotation>
48
- <xsd:restriction base="xsd:string">
49
- <xsd:enumeration value="mp.info" />
50
- <xsd:enumeration value="mp.market" />
51
- <xsd:enumeration value="mp.registration" />
52
- <xsd:enumeration value="mp.report" />
53
- </xsd:restriction>
54
- </xsd:simpleType>
55
-
56
- <xsd:simpleType name="RequestDataType">
57
- <xsd:annotation>
58
- <xsd:documentation>
59
- Identifies the inbound request data type.
60
- NOTE: JSON is not supported. For future use.
61
- </xsd:documentation>
62
- </xsd:annotation>
63
- <xsd:restriction base="xsd:string">
64
- <xsd:enumeration value="XML" />
65
- <xsd:enumeration value="JSON" />
66
- </xsd:restriction>
67
- </xsd:simpleType>
68
-
69
- <!-- Request Digital Signature -->
70
- <xsd:simpleType name="RequestSignature">
71
- <xsd:annotation>
72
- <xsd:documentation>
73
- Base64 SHA2 hash RSA encrypted digital signature of canonicalized
74
- XML input file
75
- http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments
76
- </xsd:documentation>
77
- </xsd:annotation>
78
- <xsd:restriction base="xsd:string">
79
- <xsd:minLength value="1" />
80
- <xsd:maxLength value="2048" />
81
- </xsd:restriction>
82
- </xsd:simpleType>
83
-
84
- <!-- Attachment Digital Signature -->
85
- <xsd:simpleType name="AttachmentSignature">
86
- <xsd:annotation>
87
- <xsd:documentation>
88
- Base64 SHA2 hash RSA encrypted digital signature of non-canonicalized
89
- attachment file
90
- </xsd:documentation>
91
- </xsd:annotation>
92
- <xsd:restriction base="xsd:string">
93
- <xsd:minLength value="1" />
94
- <xsd:maxLength value="2048" />
95
- </xsd:restriction>
96
- </xsd:simpleType>
97
-
98
- <!-- Attachment -->
99
- <xsd:complexType name="AttachmentType">
100
- <xsd:sequence>
101
- <xsd:element name="binaryData" type="xsd:base64Binary"
102
- minOccurs="0" maxOccurs="1" />
103
- <xsd:element name="signature" type="types:AttachmentSignature"
104
- minOccurs="0" maxOccurs="1" />
105
- <xsd:element name="name" type="xsd:string"
106
- minOccurs="0" maxOccurs="1" />
107
- </xsd:sequence>
108
- </xsd:complexType>
109
-
110
- <xsd:simpleType name="ResponseDataType">
111
- <xsd:annotation>
112
- <xsd:documentation>
113
- Identifies the outbound response data type.
114
- NOTE: JSON is not supported. For future use.
115
- </xsd:documentation>
116
- </xsd:annotation>
117
- <xsd:restriction base="xsd:string">
118
- <xsd:enumeration value="XML" />
119
- <xsd:enumeration value="HTML" />
120
- <xsd:enumeration value="CSV" />
121
- <xsd:enumeration value="JSON" />
122
- <xsd:enumeration value="TXT" />
123
- </xsd:restriction>
124
- </xsd:simpleType>
125
-
126
- <!-- Input request for Soap Attachment -->
127
- <xsd:element name="RequestAttInfo">
128
- <xsd:annotation>
129
- <xsd:documentation>
130
- Web Service Request Parameters:
131
- -------------------------------
132
- requestType : The type of request.
133
- adminRole : Indicates, if the request is submitted
134
- by the ISO administrator.
135
- requestDataCompressed : Indicates if the inbound request is
136
- compressed.
137
- requestDataType : Indicate the type of request
138
- (XML).
139
- sendRequestDataOnSuccess : Include request data in the response
140
- even if it is successful.
141
- sendResponseDataCompressed : Compress the response payload.
142
- requestSignature : The digital signature of the
143
- request payload.
144
- requestData : The actual request payload.
145
-
146
- NOTE : requestDataCompressed,
147
- sendResponseDataCompressed, and
148
- requestDataType="JSON" are for
149
- potential future use.
150
- </xsd:documentation>
151
- </xsd:annotation>
152
- <xsd:complexType>
153
- <xsd:sequence>
154
- <!-- Request Params -->
155
- <xsd:element name="requestType"
156
- type="types:RequestType" minOccurs="1" maxOccurs="1" />
157
- <xsd:element name="adminRole"
158
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
159
- <xsd:element name="requestDataCompressed"
160
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
161
- <xsd:element name="requestDataType"
162
- type="types:RequestDataType" minOccurs="1" maxOccurs="1"
163
- default="XML" />
164
- <xsd:element name="sendRequestDataOnSuccess"
165
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="true" />
166
- <xsd:element name="sendResponseDataCompressed"
167
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
168
- <xsd:element name="requestSignature"
169
- type="types:RequestSignature" minOccurs="0" maxOccurs="1" />
170
- <xsd:element name="requestData"
171
- type="xsd:base64Binary" minOccurs="1" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
172
- <xsd:element name="attachmentData"
173
- type="types:AttachmentType" minOccurs="0" maxOccurs="40" />
174
-
175
- </xsd:sequence>
176
- </xsd:complexType>
177
- </xsd:element>
178
-
179
- <xsd:element name="ResponseAttInfo">
180
- <xsd:annotation>
181
- <xsd:documentation>
182
- Web Service Response:
183
- ---------------------
184
- success : Indicates if the request is successful.
185
- warnings : Indicates if there are warnings
186
- during request processing. Only
187
- applicable if success is true.
188
- responseBinary : Indicates if the response is binary data.
189
- responseCompressed : Indicate if the response is compressed.
190
- responseDataType : Indicate the response data type,
191
- XML/HTML/CSV/TXT.
192
- responseFilename : Filename of the response, if applicable. It
193
- is set for pre-generated reports.
194
- responseData : The actual response payload.
195
-
196
- NOTE : responseCompressed is not supported. It is
197
- for potential future use.
198
- </xsd:documentation>
199
- </xsd:annotation>
200
- <xsd:complexType>
201
- <xsd:sequence>
202
- <xsd:element name="success" type="xsd:boolean"
203
- minOccurs="1" maxOccurs="1" />
204
- <xsd:element name="warnings" type="xsd:boolean"
205
- minOccurs="1" maxOccurs="1" default="false" />
206
- <xsd:element name="responseBinary" type="xsd:boolean"
207
- minOccurs="1" maxOccurs="1" default="false" />
208
- <xsd:element name="responseCompressed" type="xsd:boolean"
209
- minOccurs="1" maxOccurs="1" default="false" />
210
- <xsd:element name="responseDataType" type="types:ResponseDataType"
211
- minOccurs="1" maxOccurs="1" />
212
- <xsd:element name="responseFilename" type="xsd:string"
213
- minOccurs="0" maxOccurs="1" />
214
- <xsd:element name="responseData" type="xsd:base64Binary"
215
- minOccurs="0" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
216
- <xsd:element name="attachmentData"
217
- type="types:AttachmentType" minOccurs="0" maxOccurs="40" />
218
- </xsd:sequence>
219
- </xsd:complexType>
220
- </xsd:element>
221
-
222
- <xsd:element name="AttachmentInfo" type="types:AttachmentType">
223
- <xsd:annotation>
224
- <xsd:documentation>
225
- Attachment Response definition.
226
- </xsd:documentation>
227
- </xsd:annotation>
228
- </xsd:element>
229
-
230
- </xsd:schema>
231
- </wsdl:types>
232
-
233
- <!-- Messages -->
234
- <wsdl:message name="submitAttachmentRequest">
235
- <wsdl:part name="RequestInput" element="types:RequestAttInfo" />
236
- </wsdl:message>
237
-
238
- <wsdl:message name="retrieveAttachmentResponse">
239
- <wsdl:part name="ResponseOutput" element="types:ResponseAttInfo" />
240
- </wsdl:message>
241
-
242
- <!-- Port Types -->
243
- <wsdl:portType name="MiWebService">
244
-
245
- <wsdl:operation name="submitAttachment">
246
- <wsdl:input message="tns:submitAttachmentRequest" />
247
- <wsdl:output message="tns:retrieveAttachmentResponse" />
248
- </wsdl:operation>
249
-
250
- </wsdl:portType>
251
-
252
- <!-- Bindings -->
253
- <wsdl:binding name="MiWebServiceSOAP" type="tns:MiWebService">
254
- <soap:binding style="document"
255
- transport="http://schemas.xmlsoap.org/soap/http" />
256
-
257
- <!-- For soap file attachment based requests -->
258
- <wsdl:operation name="submitAttachment">
259
- <soap:operation soapAction="urn:abb.com:project/mms/submitAttachment" />
260
- <wsdl:input>
261
- <soap:body use="literal" />
262
- </wsdl:input>
263
- <wsdl:output>
264
- <soap:body use="literal" />
265
- </wsdl:output>
266
- </wsdl:operation>
267
-
268
- </wsdl:binding>
269
-
270
- <wsdl:service name="MiWebService">
271
- <wsdl:port name="MiWebService" binding="tns:MiWebServiceSOAP">
272
- <soap:address location="http://hostname:port/axis2/services/MiWebService" />
273
- </wsdl:port>
274
- </wsdl:service>
275
-
276
- </wsdl:definitions>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <wsdl:definitions
3
+ name="MiWebService"
4
+ targetNamespace="urn:abb.com:project/mms"
5
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
6
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
7
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
8
+ xmlns:xmime="http://www.w3.org/2005/05/xmlmime"
9
+ xmlns:types="urn:abb.com:project/mms/types"
10
+ xmlns:tns="urn:abb.com:project/mms">
11
+
12
+ <wsdl:documentation>
13
+ This is the WSDL for MI based web service.
14
+ History:
15
+ 001 01-NOV-2019 RN Initial version.
16
+ 002 02-FEB-2020 RM Modified to support Attachment downloads
17
+ ResponseAttInfo and AttachmentType elements updated.
18
+ 003 17-MAR-2021 RN Increase max attachment count to 40
19
+
20
+ </wsdl:documentation>
21
+
22
+ <!-- Types -->
23
+ <wsdl:types>
24
+ <xsd:schema targetNamespace="urn:abb.com:project/mms/types"
25
+ xmlns:types="urn:abb.com:project/mms/types">
26
+
27
+ <!-- Request Type -->
28
+ <xsd:simpleType name="RequestType">
29
+ <xsd:annotation>
30
+ <xsd:documentation>
31
+ Identifies the request type. Valid values are:
32
+
33
+ mp.info:
34
+ Market participant outbound information requests
35
+ To be used when querying Market Status, Market Messages or
36
+ the Market Participant Activity Log
37
+
38
+ mp.market:
39
+ Market participant market data requests (submit, query)
40
+
41
+ mp.registration:
42
+ Market participant registration requests
43
+
44
+ mp.report:
45
+ Market participant report requests (report list, report download)
46
+ </xsd:documentation>
47
+ </xsd:annotation>
48
+ <xsd:restriction base="xsd:string">
49
+ <xsd:enumeration value="mp.info" />
50
+ <xsd:enumeration value="mp.market" />
51
+ <xsd:enumeration value="mp.registration" />
52
+ <xsd:enumeration value="mp.report" />
53
+ </xsd:restriction>
54
+ </xsd:simpleType>
55
+
56
+ <xsd:simpleType name="RequestDataType">
57
+ <xsd:annotation>
58
+ <xsd:documentation>
59
+ Identifies the inbound request data type.
60
+ NOTE: JSON is not supported. For future use.
61
+ </xsd:documentation>
62
+ </xsd:annotation>
63
+ <xsd:restriction base="xsd:string">
64
+ <xsd:enumeration value="XML" />
65
+ <xsd:enumeration value="JSON" />
66
+ </xsd:restriction>
67
+ </xsd:simpleType>
68
+
69
+ <!-- Request Digital Signature -->
70
+ <xsd:simpleType name="RequestSignature">
71
+ <xsd:annotation>
72
+ <xsd:documentation>
73
+ Base64 SHA2 hash RSA encrypted digital signature of canonicalized
74
+ XML input file
75
+ http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments
76
+ </xsd:documentation>
77
+ </xsd:annotation>
78
+ <xsd:restriction base="xsd:string">
79
+ <xsd:minLength value="1" />
80
+ <xsd:maxLength value="2048" />
81
+ </xsd:restriction>
82
+ </xsd:simpleType>
83
+
84
+ <!-- Attachment Digital Signature -->
85
+ <xsd:simpleType name="AttachmentSignature">
86
+ <xsd:annotation>
87
+ <xsd:documentation>
88
+ Base64 SHA2 hash RSA encrypted digital signature of non-canonicalized
89
+ attachment file
90
+ </xsd:documentation>
91
+ </xsd:annotation>
92
+ <xsd:restriction base="xsd:string">
93
+ <xsd:minLength value="1" />
94
+ <xsd:maxLength value="2048" />
95
+ </xsd:restriction>
96
+ </xsd:simpleType>
97
+
98
+ <!-- Attachment -->
99
+ <xsd:complexType name="AttachmentType">
100
+ <xsd:sequence>
101
+ <xsd:element name="binaryData" type="xsd:base64Binary"
102
+ minOccurs="0" maxOccurs="1" />
103
+ <xsd:element name="signature" type="types:AttachmentSignature"
104
+ minOccurs="0" maxOccurs="1" />
105
+ <xsd:element name="name" type="xsd:string"
106
+ minOccurs="0" maxOccurs="1" />
107
+ </xsd:sequence>
108
+ </xsd:complexType>
109
+
110
+ <xsd:simpleType name="ResponseDataType">
111
+ <xsd:annotation>
112
+ <xsd:documentation>
113
+ Identifies the outbound response data type.
114
+ NOTE: JSON is not supported. For future use.
115
+ </xsd:documentation>
116
+ </xsd:annotation>
117
+ <xsd:restriction base="xsd:string">
118
+ <xsd:enumeration value="XML" />
119
+ <xsd:enumeration value="HTML" />
120
+ <xsd:enumeration value="CSV" />
121
+ <xsd:enumeration value="JSON" />
122
+ <xsd:enumeration value="TXT" />
123
+ </xsd:restriction>
124
+ </xsd:simpleType>
125
+
126
+ <!-- Input request for Soap Attachment -->
127
+ <xsd:element name="RequestAttInfo">
128
+ <xsd:annotation>
129
+ <xsd:documentation>
130
+ Web Service Request Parameters:
131
+ -------------------------------
132
+ requestType : The type of request.
133
+ adminRole : Indicates, if the request is submitted
134
+ by the ISO administrator.
135
+ requestDataCompressed : Indicates if the inbound request is
136
+ compressed.
137
+ requestDataType : Indicate the type of request
138
+ (XML).
139
+ sendRequestDataOnSuccess : Include request data in the response
140
+ even if it is successful.
141
+ sendResponseDataCompressed : Compress the response payload.
142
+ requestSignature : The digital signature of the
143
+ request payload.
144
+ requestData : The actual request payload.
145
+
146
+ NOTE : requestDataCompressed,
147
+ sendResponseDataCompressed, and
148
+ requestDataType="JSON" are for
149
+ potential future use.
150
+ </xsd:documentation>
151
+ </xsd:annotation>
152
+ <xsd:complexType>
153
+ <xsd:sequence>
154
+ <!-- Request Params -->
155
+ <xsd:element name="requestType"
156
+ type="types:RequestType" minOccurs="1" maxOccurs="1" />
157
+ <xsd:element name="adminRole"
158
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
159
+ <xsd:element name="requestDataCompressed"
160
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
161
+ <xsd:element name="requestDataType"
162
+ type="types:RequestDataType" minOccurs="1" maxOccurs="1"
163
+ default="XML" />
164
+ <xsd:element name="sendRequestDataOnSuccess"
165
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="true" />
166
+ <xsd:element name="sendResponseDataCompressed"
167
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
168
+ <xsd:element name="requestSignature"
169
+ type="types:RequestSignature" minOccurs="0" maxOccurs="1" />
170
+ <xsd:element name="requestData"
171
+ type="xsd:base64Binary" minOccurs="1" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
172
+ <xsd:element name="attachmentData"
173
+ type="types:AttachmentType" minOccurs="0" maxOccurs="40" />
174
+
175
+ </xsd:sequence>
176
+ </xsd:complexType>
177
+ </xsd:element>
178
+
179
+ <xsd:element name="ResponseAttInfo">
180
+ <xsd:annotation>
181
+ <xsd:documentation>
182
+ Web Service Response:
183
+ ---------------------
184
+ success : Indicates if the request is successful.
185
+ warnings : Indicates if there are warnings
186
+ during request processing. Only
187
+ applicable if success is true.
188
+ responseBinary : Indicates if the response is binary data.
189
+ responseCompressed : Indicate if the response is compressed.
190
+ responseDataType : Indicate the response data type,
191
+ XML/HTML/CSV/TXT.
192
+ responseFilename : Filename of the response, if applicable. It
193
+ is set for pre-generated reports.
194
+ responseData : The actual response payload.
195
+
196
+ NOTE : responseCompressed is not supported. It is
197
+ for potential future use.
198
+ </xsd:documentation>
199
+ </xsd:annotation>
200
+ <xsd:complexType>
201
+ <xsd:sequence>
202
+ <xsd:element name="success" type="xsd:boolean"
203
+ minOccurs="1" maxOccurs="1" />
204
+ <xsd:element name="warnings" type="xsd:boolean"
205
+ minOccurs="1" maxOccurs="1" default="false" />
206
+ <xsd:element name="responseBinary" type="xsd:boolean"
207
+ minOccurs="1" maxOccurs="1" default="false" />
208
+ <xsd:element name="responseCompressed" type="xsd:boolean"
209
+ minOccurs="1" maxOccurs="1" default="false" />
210
+ <xsd:element name="responseDataType" type="types:ResponseDataType"
211
+ minOccurs="1" maxOccurs="1" />
212
+ <xsd:element name="responseFilename" type="xsd:string"
213
+ minOccurs="0" maxOccurs="1" />
214
+ <xsd:element name="responseData" type="xsd:base64Binary"
215
+ minOccurs="0" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
216
+ <xsd:element name="attachmentData"
217
+ type="types:AttachmentType" minOccurs="0" maxOccurs="40" />
218
+ </xsd:sequence>
219
+ </xsd:complexType>
220
+ </xsd:element>
221
+
222
+ <xsd:element name="AttachmentInfo" type="types:AttachmentType">
223
+ <xsd:annotation>
224
+ <xsd:documentation>
225
+ Attachment Response definition.
226
+ </xsd:documentation>
227
+ </xsd:annotation>
228
+ </xsd:element>
229
+
230
+ </xsd:schema>
231
+ </wsdl:types>
232
+
233
+ <!-- Messages -->
234
+ <wsdl:message name="submitAttachmentRequest">
235
+ <wsdl:part name="RequestInput" element="types:RequestAttInfo" />
236
+ </wsdl:message>
237
+
238
+ <wsdl:message name="retrieveAttachmentResponse">
239
+ <wsdl:part name="ResponseOutput" element="types:ResponseAttInfo" />
240
+ </wsdl:message>
241
+
242
+ <!-- Port Types -->
243
+ <wsdl:portType name="MiWebService">
244
+
245
+ <wsdl:operation name="submitAttachment">
246
+ <wsdl:input message="tns:submitAttachmentRequest" />
247
+ <wsdl:output message="tns:retrieveAttachmentResponse" />
248
+ </wsdl:operation>
249
+
250
+ </wsdl:portType>
251
+
252
+ <!-- Bindings -->
253
+ <wsdl:binding name="MiWebServiceSOAP" type="tns:MiWebService">
254
+ <soap:binding style="document"
255
+ transport="http://schemas.xmlsoap.org/soap/http" />
256
+
257
+ <!-- For soap file attachment based requests -->
258
+ <wsdl:operation name="submitAttachment">
259
+ <soap:operation soapAction="urn:abb.com:project/mms/submitAttachment" />
260
+ <wsdl:input>
261
+ <soap:body use="literal" />
262
+ </wsdl:input>
263
+ <wsdl:output>
264
+ <soap:body use="literal" />
265
+ </wsdl:output>
266
+ </wsdl:operation>
267
+
268
+ </wsdl:binding>
269
+
270
+ <wsdl:service name="MiWebService">
271
+ <wsdl:port name="MiWebService" binding="tns:MiWebServiceSOAP">
272
+ <soap:address location="http://hostname:port/axis2/services/MiWebService" />
273
+ </wsdl:port>
274
+ </wsdl:service>
275
+
276
+ </wsdl:definitions>