mms-client 1.10.0__py3-none-any.whl → 1.11.0__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,262 +1,262 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <wsdl:definitions
3
- name="OmiWebService"
4
- targetNamespace="urn:ws.web.omi.co.jp"
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:types.ws.web.omi.co.jp"
10
- xmlns:tns="urn:ws.web.omi.co.jp">
11
-
12
- <wsdl:documentation>
13
- This is the WSDL for OMI based web service.
14
- History:
15
- 001 2021-03-29 Initial version.
16
-
17
- </wsdl:documentation>
18
-
19
- <!-- Types -->
20
- <wsdl:types>
21
- <xsd:schema targetNamespace="urn:types.ws.web.omi.co.jp"
22
- xmlns:types="urn:types.ws.web.omi.co.jp">
23
-
24
- <!-- Request Type -->
25
- <xsd:simpleType name="RequestType">
26
- <xsd:annotation>
27
- <xsd:documentation>
28
- Identifies the request type. Valid values are:
29
-
30
- mp.omi:
31
- OMIに関する各種リクエスト
32
-
33
-
34
- </xsd:documentation>
35
- </xsd:annotation>
36
- <xsd:restriction base="xsd:string">
37
- <xsd:enumeration value="mp.omi" />
38
-
39
- </xsd:restriction>
40
- </xsd:simpleType>
41
-
42
- <xsd:simpleType name="RequestDataType">
43
- <xsd:annotation>
44
- <xsd:documentation>
45
- Identifies the inbound request data type.
46
- NOTE: JSON is not supported. For future use.
47
- </xsd:documentation>
48
- </xsd:annotation>
49
- <xsd:restriction base="xsd:string">
50
- <xsd:enumeration value="XML" />
51
- <xsd:enumeration value="JSON" />
52
- </xsd:restriction>
53
- </xsd:simpleType>
54
-
55
- <!-- Request Digital Signature -->
56
- <xsd:simpleType name="RequestSignature">
57
- <xsd:annotation>
58
- <xsd:documentation>
59
- Base64 SHA2 hash RSA encrypted digital signature of canonicalized
60
- XML input file
61
- http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments
62
- </xsd:documentation>
63
- </xsd:annotation>
64
- <xsd:restriction base="xsd:string">
65
- <xsd:minLength value="1" />
66
- <xsd:maxLength value="2048" />
67
- </xsd:restriction>
68
- </xsd:simpleType>
69
-
70
- <!-- Attachment Digital Signature -->
71
- <xsd:simpleType name="AttachmentSignature">
72
- <xsd:annotation>
73
- <xsd:documentation>
74
- Base64 SHA2 hash RSA encrypted digital signature of non-canonicalized
75
- attachment file
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 -->
85
- <xsd:complexType name="AttachmentType">
86
- <xsd:sequence>
87
- <xsd:element name="binaryData" type="xsd:base64Binary"
88
- minOccurs="0" maxOccurs="1" />
89
- <xsd:element name="signature" type="types:AttachmentSignature"
90
- minOccurs="0" maxOccurs="1" />
91
- <xsd:element name="name" type="xsd:string"
92
- minOccurs="0" maxOccurs="1" />
93
- </xsd:sequence>
94
- </xsd:complexType>
95
-
96
- <xsd:simpleType name="ResponseDataType">
97
- <xsd:annotation>
98
- <xsd:documentation>
99
- Identifies the outbound response data type.
100
- NOTE: JSON is not supported. For future use.
101
- </xsd:documentation>
102
- </xsd:annotation>
103
- <xsd:restriction base="xsd:string">
104
- <xsd:enumeration value="XML" />
105
- <xsd:enumeration value="HTML" />
106
- <xsd:enumeration value="CSV" />
107
- <xsd:enumeration value="JSON" />
108
- <xsd:enumeration value="TXT" />
109
- </xsd:restriction>
110
- </xsd:simpleType>
111
-
112
- <!-- Input request for Soap Attachment -->
113
- <xsd:element name="RequestAttInfo">
114
- <xsd:annotation>
115
- <xsd:documentation>
116
- Web Service Request Parameters:
117
- -------------------------------
118
- requestType : The type of request.
119
- adminRole : Indicates, if the request is submitted
120
- by the ISO administrator.
121
- requestDataCompressed : Indicates if the inbound request is
122
- compressed.
123
- requestDataType : Indicate the type of request
124
- (XML).
125
- sendRequestDataOnSuccess : Include request data in the response
126
- even if it is successful.
127
- sendResponseDataCompressed : Compress the response payload.
128
- requestSignature : The digital signature of the
129
- request payload.
130
- requestData : The actual request payload.
131
-
132
- NOTE : requestDataCompressed,
133
- sendResponseDataCompressed, and
134
- requestDataType="JSON" are for
135
- potential future use.
136
- </xsd:documentation>
137
- </xsd:annotation>
138
- <xsd:complexType>
139
- <xsd:sequence>
140
- <!-- Request Params -->
141
- <xsd:element name="requestType"
142
- type="types:RequestType" minOccurs="1" maxOccurs="1" />
143
- <xsd:element name="adminRole"
144
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
145
- <xsd:element name="requestDataCompressed"
146
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
147
- <xsd:element name="requestDataType"
148
- type="types:RequestDataType" minOccurs="1" maxOccurs="1"
149
- default="XML" />
150
- <xsd:element name="sendRequestDataOnSuccess"
151
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="true" />
152
- <xsd:element name="sendResponseDataCompressed"
153
- type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
154
- <xsd:element name="requestSignature"
155
- type="types:RequestSignature" minOccurs="0" maxOccurs="1" />
156
- <xsd:element name="requestData"
157
- type="xsd:base64Binary" minOccurs="1" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
158
- <xsd:element name="attachmentData"
159
- type="types:AttachmentType" minOccurs="0" maxOccurs="20" />
160
-
161
- </xsd:sequence>
162
- </xsd:complexType>
163
- </xsd:element>
164
-
165
- <xsd:element name="ResponseAttInfo">
166
- <xsd:annotation>
167
- <xsd:documentation>
168
- Web Service Response:
169
- ---------------------
170
- success : Indicates if the request is successful.
171
- warnings : Indicates if there are warnings
172
- during request processing. Only
173
- applicable if success is true.
174
- responseBinary : Indicates if the response is binary data.
175
- responseCompressed : Indicate if the response is compressed.
176
- responseDataType : Indicate the response data type,
177
- XML/HTML/CSV/TXT.
178
- responseFilename : Filename of the response, if applicable. It
179
- is set for pre-generated reports.
180
- responseData : The actual response payload.
181
-
182
- NOTE : responseCompressed is not supported. It is
183
- for potential future use.
184
- </xsd:documentation>
185
- </xsd:annotation>
186
- <xsd:complexType>
187
- <xsd:sequence>
188
- <xsd:element name="success" type="xsd:boolean"
189
- minOccurs="1" maxOccurs="1" />
190
- <xsd:element name="warnings" type="xsd:boolean"
191
- minOccurs="1" maxOccurs="1" default="false" />
192
- <xsd:element name="responseBinary" type="xsd:boolean"
193
- minOccurs="1" maxOccurs="1" default="false" />
194
- <xsd:element name="responseCompressed" type="xsd:boolean"
195
- minOccurs="1" maxOccurs="1" default="false" />
196
- <xsd:element name="responseDataType" type="types:ResponseDataType"
197
- minOccurs="1" maxOccurs="1" />
198
- <xsd:element name="responseFilename" type="xsd:string"
199
- minOccurs="0" maxOccurs="1" />
200
- <xsd:element name="responseData" type="xsd:base64Binary"
201
- minOccurs="0" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
202
- <xsd:element name="attachmentData"
203
- type="types:AttachmentType" minOccurs="0" maxOccurs="20" />
204
- </xsd:sequence>
205
- </xsd:complexType>
206
- </xsd:element>
207
-
208
- <xsd:element name="AttachmentInfo" type="types:AttachmentType">
209
- <xsd:annotation>
210
- <xsd:documentation>
211
- Attachment Response definition.
212
- </xsd:documentation>
213
- </xsd:annotation>
214
- </xsd:element>
215
-
216
- </xsd:schema>
217
- </wsdl:types>
218
-
219
- <!-- Messages -->
220
- <wsdl:message name="submitAttachmentRequest">
221
- <wsdl:part name="RequestInput" element="types:RequestAttInfo" />
222
- </wsdl:message>
223
-
224
- <wsdl:message name="retrieveAttachmentResponse">
225
- <wsdl:part name="ResponseOutput" element="types:ResponseAttInfo" />
226
- </wsdl:message>
227
-
228
- <!-- Port Types -->
229
- <wsdl:portType name="OmiWebService">
230
-
231
- <wsdl:operation name="submitAttachment">
232
- <wsdl:input message="tns:submitAttachmentRequest" />
233
- <wsdl:output message="tns:retrieveAttachmentResponse" />
234
- </wsdl:operation>
235
-
236
- </wsdl:portType>
237
-
238
- <!-- Bindings -->
239
- <wsdl:binding name="OmiWebServiceSOAP" type="tns:OmiWebService">
240
- <soap:binding style="document"
241
- transport="http://schemas.xmlsoap.org/soap/http" />
242
-
243
- <!-- For soap file attachment based requests -->
244
- <wsdl:operation name="submitAttachment">
245
- <soap:operation soapAction="urn:ws.web.omi.co.jp:submitAttachment" />
246
- <wsdl:input>
247
- <soap:body use="literal" />
248
- </wsdl:input>
249
- <wsdl:output>
250
- <soap:body use="literal" />
251
- </wsdl:output>
252
- </wsdl:operation>
253
-
254
- </wsdl:binding>
255
-
256
- <wsdl:service name="OmiWebService">
257
- <wsdl:port name="OmiWebService" binding="tns:OmiWebServiceSOAP">
258
- <soap:address location="http://hostname:port/axis2/services/OmiWebService" />
259
- </wsdl:port>
260
- </wsdl:service>
261
-
262
- </wsdl:definitions>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <wsdl:definitions
3
+ name="OmiWebService"
4
+ targetNamespace="urn:ws.web.omi.co.jp"
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:types.ws.web.omi.co.jp"
10
+ xmlns:tns="urn:ws.web.omi.co.jp">
11
+
12
+ <wsdl:documentation>
13
+ This is the WSDL for OMI based web service.
14
+ History:
15
+ 001 2021-03-29 Initial version.
16
+
17
+ </wsdl:documentation>
18
+
19
+ <!-- Types -->
20
+ <wsdl:types>
21
+ <xsd:schema targetNamespace="urn:types.ws.web.omi.co.jp"
22
+ xmlns:types="urn:types.ws.web.omi.co.jp">
23
+
24
+ <!-- Request Type -->
25
+ <xsd:simpleType name="RequestType">
26
+ <xsd:annotation>
27
+ <xsd:documentation>
28
+ Identifies the request type. Valid values are:
29
+
30
+ mp.omi:
31
+ OMIに関する各種リクエスト
32
+
33
+
34
+ </xsd:documentation>
35
+ </xsd:annotation>
36
+ <xsd:restriction base="xsd:string">
37
+ <xsd:enumeration value="mp.omi" />
38
+
39
+ </xsd:restriction>
40
+ </xsd:simpleType>
41
+
42
+ <xsd:simpleType name="RequestDataType">
43
+ <xsd:annotation>
44
+ <xsd:documentation>
45
+ Identifies the inbound request data type.
46
+ NOTE: JSON is not supported. For future use.
47
+ </xsd:documentation>
48
+ </xsd:annotation>
49
+ <xsd:restriction base="xsd:string">
50
+ <xsd:enumeration value="XML" />
51
+ <xsd:enumeration value="JSON" />
52
+ </xsd:restriction>
53
+ </xsd:simpleType>
54
+
55
+ <!-- Request Digital Signature -->
56
+ <xsd:simpleType name="RequestSignature">
57
+ <xsd:annotation>
58
+ <xsd:documentation>
59
+ Base64 SHA2 hash RSA encrypted digital signature of canonicalized
60
+ XML input file
61
+ http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments
62
+ </xsd:documentation>
63
+ </xsd:annotation>
64
+ <xsd:restriction base="xsd:string">
65
+ <xsd:minLength value="1" />
66
+ <xsd:maxLength value="2048" />
67
+ </xsd:restriction>
68
+ </xsd:simpleType>
69
+
70
+ <!-- Attachment Digital Signature -->
71
+ <xsd:simpleType name="AttachmentSignature">
72
+ <xsd:annotation>
73
+ <xsd:documentation>
74
+ Base64 SHA2 hash RSA encrypted digital signature of non-canonicalized
75
+ attachment file
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 -->
85
+ <xsd:complexType name="AttachmentType">
86
+ <xsd:sequence>
87
+ <xsd:element name="binaryData" type="xsd:base64Binary"
88
+ minOccurs="0" maxOccurs="1" />
89
+ <xsd:element name="signature" type="types:AttachmentSignature"
90
+ minOccurs="0" maxOccurs="1" />
91
+ <xsd:element name="name" type="xsd:string"
92
+ minOccurs="0" maxOccurs="1" />
93
+ </xsd:sequence>
94
+ </xsd:complexType>
95
+
96
+ <xsd:simpleType name="ResponseDataType">
97
+ <xsd:annotation>
98
+ <xsd:documentation>
99
+ Identifies the outbound response data type.
100
+ NOTE: JSON is not supported. For future use.
101
+ </xsd:documentation>
102
+ </xsd:annotation>
103
+ <xsd:restriction base="xsd:string">
104
+ <xsd:enumeration value="XML" />
105
+ <xsd:enumeration value="HTML" />
106
+ <xsd:enumeration value="CSV" />
107
+ <xsd:enumeration value="JSON" />
108
+ <xsd:enumeration value="TXT" />
109
+ </xsd:restriction>
110
+ </xsd:simpleType>
111
+
112
+ <!-- Input request for Soap Attachment -->
113
+ <xsd:element name="RequestAttInfo">
114
+ <xsd:annotation>
115
+ <xsd:documentation>
116
+ Web Service Request Parameters:
117
+ -------------------------------
118
+ requestType : The type of request.
119
+ adminRole : Indicates, if the request is submitted
120
+ by the ISO administrator.
121
+ requestDataCompressed : Indicates if the inbound request is
122
+ compressed.
123
+ requestDataType : Indicate the type of request
124
+ (XML).
125
+ sendRequestDataOnSuccess : Include request data in the response
126
+ even if it is successful.
127
+ sendResponseDataCompressed : Compress the response payload.
128
+ requestSignature : The digital signature of the
129
+ request payload.
130
+ requestData : The actual request payload.
131
+
132
+ NOTE : requestDataCompressed,
133
+ sendResponseDataCompressed, and
134
+ requestDataType="JSON" are for
135
+ potential future use.
136
+ </xsd:documentation>
137
+ </xsd:annotation>
138
+ <xsd:complexType>
139
+ <xsd:sequence>
140
+ <!-- Request Params -->
141
+ <xsd:element name="requestType"
142
+ type="types:RequestType" minOccurs="1" maxOccurs="1" />
143
+ <xsd:element name="adminRole"
144
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
145
+ <xsd:element name="requestDataCompressed"
146
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
147
+ <xsd:element name="requestDataType"
148
+ type="types:RequestDataType" minOccurs="1" maxOccurs="1"
149
+ default="XML" />
150
+ <xsd:element name="sendRequestDataOnSuccess"
151
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="true" />
152
+ <xsd:element name="sendResponseDataCompressed"
153
+ type="xsd:boolean" minOccurs="1" maxOccurs="1" default="false" />
154
+ <xsd:element name="requestSignature"
155
+ type="types:RequestSignature" minOccurs="0" maxOccurs="1" />
156
+ <xsd:element name="requestData"
157
+ type="xsd:base64Binary" minOccurs="1" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
158
+ <xsd:element name="attachmentData"
159
+ type="types:AttachmentType" minOccurs="0" maxOccurs="20" />
160
+
161
+ </xsd:sequence>
162
+ </xsd:complexType>
163
+ </xsd:element>
164
+
165
+ <xsd:element name="ResponseAttInfo">
166
+ <xsd:annotation>
167
+ <xsd:documentation>
168
+ Web Service Response:
169
+ ---------------------
170
+ success : Indicates if the request is successful.
171
+ warnings : Indicates if there are warnings
172
+ during request processing. Only
173
+ applicable if success is true.
174
+ responseBinary : Indicates if the response is binary data.
175
+ responseCompressed : Indicate if the response is compressed.
176
+ responseDataType : Indicate the response data type,
177
+ XML/HTML/CSV/TXT.
178
+ responseFilename : Filename of the response, if applicable. It
179
+ is set for pre-generated reports.
180
+ responseData : The actual response payload.
181
+
182
+ NOTE : responseCompressed is not supported. It is
183
+ for potential future use.
184
+ </xsd:documentation>
185
+ </xsd:annotation>
186
+ <xsd:complexType>
187
+ <xsd:sequence>
188
+ <xsd:element name="success" type="xsd:boolean"
189
+ minOccurs="1" maxOccurs="1" />
190
+ <xsd:element name="warnings" type="xsd:boolean"
191
+ minOccurs="1" maxOccurs="1" default="false" />
192
+ <xsd:element name="responseBinary" type="xsd:boolean"
193
+ minOccurs="1" maxOccurs="1" default="false" />
194
+ <xsd:element name="responseCompressed" type="xsd:boolean"
195
+ minOccurs="1" maxOccurs="1" default="false" />
196
+ <xsd:element name="responseDataType" type="types:ResponseDataType"
197
+ minOccurs="1" maxOccurs="1" />
198
+ <xsd:element name="responseFilename" type="xsd:string"
199
+ minOccurs="0" maxOccurs="1" />
200
+ <xsd:element name="responseData" type="xsd:base64Binary"
201
+ minOccurs="0" maxOccurs="1" xmime:expectedContentTypes="application/octet-stream" />
202
+ <xsd:element name="attachmentData"
203
+ type="types:AttachmentType" minOccurs="0" maxOccurs="20" />
204
+ </xsd:sequence>
205
+ </xsd:complexType>
206
+ </xsd:element>
207
+
208
+ <xsd:element name="AttachmentInfo" type="types:AttachmentType">
209
+ <xsd:annotation>
210
+ <xsd:documentation>
211
+ Attachment Response definition.
212
+ </xsd:documentation>
213
+ </xsd:annotation>
214
+ </xsd:element>
215
+
216
+ </xsd:schema>
217
+ </wsdl:types>
218
+
219
+ <!-- Messages -->
220
+ <wsdl:message name="submitAttachmentRequest">
221
+ <wsdl:part name="RequestInput" element="types:RequestAttInfo" />
222
+ </wsdl:message>
223
+
224
+ <wsdl:message name="retrieveAttachmentResponse">
225
+ <wsdl:part name="ResponseOutput" element="types:ResponseAttInfo" />
226
+ </wsdl:message>
227
+
228
+ <!-- Port Types -->
229
+ <wsdl:portType name="OmiWebService">
230
+
231
+ <wsdl:operation name="submitAttachment">
232
+ <wsdl:input message="tns:submitAttachmentRequest" />
233
+ <wsdl:output message="tns:retrieveAttachmentResponse" />
234
+ </wsdl:operation>
235
+
236
+ </wsdl:portType>
237
+
238
+ <!-- Bindings -->
239
+ <wsdl:binding name="OmiWebServiceSOAP" type="tns:OmiWebService">
240
+ <soap:binding style="document"
241
+ transport="http://schemas.xmlsoap.org/soap/http" />
242
+
243
+ <!-- For soap file attachment based requests -->
244
+ <wsdl:operation name="submitAttachment">
245
+ <soap:operation soapAction="urn:ws.web.omi.co.jp:submitAttachment" />
246
+ <wsdl:input>
247
+ <soap:body use="literal" />
248
+ </wsdl:input>
249
+ <wsdl:output>
250
+ <soap:body use="literal" />
251
+ </wsdl:output>
252
+ </wsdl:operation>
253
+
254
+ </wsdl:binding>
255
+
256
+ <wsdl:service name="OmiWebService">
257
+ <wsdl:port name="OmiWebService" binding="tns:OmiWebServiceSOAP">
258
+ <soap:address location="http://hostname:port/axis2/services/OmiWebService" />
259
+ </wsdl:port>
260
+ </wsdl:service>
261
+
262
+ </wsdl:definitions>