czech-data-box 0.1.2 → 0.2.0
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.
- package/LICENSE +1 -1
- package/README.md +277 -48
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/ISDSBox.d.ts +96 -0
- package/dist/lib/ISDSBox.d.ts.map +1 -0
- package/dist/lib/ISDSBox.js +662 -0
- package/dist/lib/ISDSBox.js.map +1 -0
- package/dist/lib/ISDSSentOutFiles.d.ts +14 -0
- package/dist/lib/ISDSSentOutFiles.d.ts.map +1 -0
- package/dist/lib/ISDSSentOutFiles.js +44 -0
- package/dist/lib/ISDSSentOutFiles.js.map +1 -0
- package/dist/lib/ISDSSoapClient.d.ts +25 -0
- package/dist/lib/ISDSSoapClient.d.ts.map +1 -0
- package/dist/lib/ISDSSoapClient.js +178 -0
- package/dist/lib/ISDSSoapClient.js.map +1 -0
- package/dist/lib/config.d.ts +7 -0
- package/dist/lib/config.d.ts.map +1 -0
- package/dist/lib/config.js +94 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/models/DataBox.d.ts +34 -0
- package/dist/models/DataBox.d.ts.map +1 -0
- package/dist/models/DataBox.js +92 -0
- package/dist/models/DataBox.js.map +1 -0
- package/dist/models/DataMessage.d.ts +29 -0
- package/dist/models/DataMessage.d.ts.map +1 -0
- package/dist/models/DataMessage.js +96 -0
- package/dist/models/DataMessage.js.map +1 -0
- package/dist/models/DataMessageFile.d.ts +22 -0
- package/dist/models/DataMessageFile.d.ts.map +1 -0
- package/dist/models/DataMessageFile.js +54 -0
- package/dist/models/DataMessageFile.js.map +1 -0
- package/dist/models/DataMessageFiles.d.ts +9 -0
- package/dist/models/DataMessageFiles.d.ts.map +1 -0
- package/dist/models/DataMessageFiles.js +17 -0
- package/dist/models/DataMessageFiles.js.map +1 -0
- package/dist/types.d.ts +420 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +66 -40
- package/resources/wsdl/ChangePassword.wsdl +83 -83
- package/resources/wsdl/ChangePasswordTypes.xsd +68 -68
- package/resources/wsdl/dbTypes.xsd +1712 -1688
- package/resources/wsdl/db_access.wsdl +199 -197
- package/resources/wsdl/db_manipulations.wsdl +600 -598
- package/resources/wsdl/db_search.wsdl +389 -362
- package/resources/wsdl/dmBaseTypes.xsd +1563 -1497
- package/resources/wsdl/dm_VoDZ.wsdl +215 -212
- package/resources/wsdl/dm_arch.wsdl +77 -0
- package/resources/wsdl/dm_info.wsdl +462 -412
- package/resources/wsdl/dm_operations.wsdl +252 -242
- package/.gitattributes +0 -16
- package/.github/workflows/tests.yml +0 -39
- package/.nvmrc +0 -1
- package/.prettierignore +0 -1
- package/.prettierrc.yaml +0 -6
- package/.vscode/launch.json +0 -15
- package/.vscode/settings.json +0 -5
- package/CHANGELOG.md +0 -17
- package/CODE_OF_CONDUCT.md +0 -128
- package/CONTRIBUTING.md +0 -84
- package/eslint.config.js +0 -26
- package/examples/db_login_with_certificate.js +0 -27
- package/examples/db_search.js +0 -27
- package/examples/dm_operations.js +0 -58
- package/src/index.js +0 -5
- package/src/lib/ISDSBox.js +0 -309
- package/src/lib/ISDSSentOutFiles.js +0 -84
- package/src/lib/ISDSSoapClient.js +0 -201
- package/src/lib/config.js +0 -71
- package/src/models/DataBox.js +0 -194
- package/src/models/DataMessage.js +0 -153
- package/src/models/DataMessageFile.js +0 -69
- package/src/models/DataMessageFiles.js +0 -23
- package/test/ISDSBox.test.js +0 -129
- package/test/ISDSSentOutFiles.test.js +0 -124
- package/test/ISDSSoapClient.test.js +0 -81
- package/test/communication_test.pdf +0 -0
|
@@ -1,212 +1,215 @@
|
|
|
1
|
-
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
2
|
-
<!-- *********************************************************************
|
|
3
|
-
|
|
4
|
-
verze: 3.
|
|
5
|
-
klasifikace: Veřejný dokument
|
|
6
|
-
|
|
7
|
-
WSDL pro služby manipulující s Velkoobjemovými zprávami (VoDZ)
|
|
8
|
-
CreateBigMessage
|
|
9
|
-
AutenticateBigMessage
|
|
10
|
-
UploadAttachment
|
|
11
|
-
DownloadAttachment
|
|
12
|
-
SignedBigMessageDownload
|
|
13
|
-
SignedSentBigMessageDownload
|
|
14
|
-
BigMessageDownload
|
|
15
|
-
|
|
16
|
-
Změny:
|
|
17
|
-
24.11.2021 verze 3.0
|
|
18
|
-
24.05.2022 verze 3.01 - sjednocení verzí
|
|
19
|
-
31.10.2022 verze 3.03 - sjednocení verzí
|
|
20
|
-
20.10.2023 verze 3.04 - sjednocení verzí
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
xmlns
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
<message name="
|
|
43
|
-
<part name="parameter" element="tns:
|
|
44
|
-
</message>
|
|
45
|
-
|
|
46
|
-
<
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<message name="
|
|
50
|
-
<part name="parameter" element="tns:
|
|
51
|
-
</message>
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
<message name="
|
|
57
|
-
<part name="parameter" element="tns:
|
|
58
|
-
</message>
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
<message name="
|
|
64
|
-
<part name="parameter" element="tns:
|
|
65
|
-
</message>
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
<message name="
|
|
71
|
-
<part name="parameter" element="tns:
|
|
72
|
-
</message>
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
<message name="
|
|
78
|
-
<part name="parameter" element="tns:
|
|
79
|
-
</message>
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
<message name="
|
|
85
|
-
<part name="parameter" element="tns:
|
|
86
|
-
</message>
|
|
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
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
<
|
|
138
|
-
<soap12:body use="literal" />
|
|
139
|
-
</
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
<
|
|
148
|
-
<soap12:body use="literal" />
|
|
149
|
-
</
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
<
|
|
158
|
-
<soap12:body use="literal" />
|
|
159
|
-
</
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
<
|
|
168
|
-
<soap12:body use="literal" />
|
|
169
|
-
</
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
<
|
|
178
|
-
<soap12:body use="literal" />
|
|
179
|
-
</
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
<
|
|
188
|
-
<soap12:body use="literal" />
|
|
189
|
-
</
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
<
|
|
198
|
-
<soap12:body use="literal" />
|
|
199
|
-
</
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
</
|
|
212
|
-
|
|
1
|
+
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
2
|
+
<!-- *********************************************************************
|
|
3
|
+
|
|
4
|
+
verze: 3.09
|
|
5
|
+
klasifikace: Veřejný dokument
|
|
6
|
+
|
|
7
|
+
WSDL pro služby manipulující s Velkoobjemovými zprávami (VoDZ)
|
|
8
|
+
CreateBigMessage
|
|
9
|
+
AutenticateBigMessage
|
|
10
|
+
UploadAttachment
|
|
11
|
+
DownloadAttachment
|
|
12
|
+
SignedBigMessageDownload
|
|
13
|
+
SignedSentBigMessageDownload
|
|
14
|
+
BigMessageDownload
|
|
15
|
+
|
|
16
|
+
Změny:
|
|
17
|
+
24.11.2021 verze 3.0
|
|
18
|
+
24.05.2022 verze 3.01 - sjednocení verzí
|
|
19
|
+
31.10.2022 verze 3.03 - sjednocení verzí
|
|
20
|
+
20.10.2023 verze 3.04 - sjednocení verzí
|
|
21
|
+
26.01.2024 verze 3.05 - sjednocení verzí
|
|
22
|
+
21.10.2024 verze 3.07 - sjednocení verzí
|
|
23
|
+
20.02.2025 verze 3.09 - sjednocení verzí
|
|
24
|
+
|
|
25
|
+
************************************************************************ -->
|
|
26
|
+
|
|
27
|
+
<definitions name="ISDS_VoDZ" targetNamespace="http://isds.czechpoint.cz/v20"
|
|
28
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
|
29
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
30
|
+
xmlns:tns="http://isds.czechpoint.cz/v20"
|
|
31
|
+
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
|
|
32
|
+
>
|
|
33
|
+
|
|
34
|
+
<types>
|
|
35
|
+
<xs:schema targetNamespace="http://isds.czechpoint.cz/v20">
|
|
36
|
+
<xs:include schemaLocation="dmBaseTypes.xsd" />
|
|
37
|
+
</xs:schema>
|
|
38
|
+
</types>
|
|
39
|
+
|
|
40
|
+
<!-- ******************************************************************* -->
|
|
41
|
+
|
|
42
|
+
<message name="UploadAttachmentRequest">
|
|
43
|
+
<part name="parameter" element="tns:UploadAttachment" />
|
|
44
|
+
</message>
|
|
45
|
+
<message name="UploadAttachmentResponse">
|
|
46
|
+
<part name="parameter" element="tns:UploadAttachmentResponse" />
|
|
47
|
+
</message>
|
|
48
|
+
|
|
49
|
+
<message name="DownloadAttachmentRequest">
|
|
50
|
+
<part name="parameter" element="tns:DownloadAttachment" />
|
|
51
|
+
</message>
|
|
52
|
+
<message name="DownloadAttachmentResponse">
|
|
53
|
+
<part name="parameter" element="tns:DownloadAttachmentResponse" />
|
|
54
|
+
</message>
|
|
55
|
+
|
|
56
|
+
<message name="CreateBigMessageRequest">
|
|
57
|
+
<part name="parameter" element="tns:CreateBigMessage" />
|
|
58
|
+
</message>
|
|
59
|
+
<message name="CreateBigMessageResponse">
|
|
60
|
+
<part name="parameter" element="tns:CreateBigMessageResponse" />
|
|
61
|
+
</message>
|
|
62
|
+
|
|
63
|
+
<message name="AuthenticateBigMessageRequest">
|
|
64
|
+
<part name="parameter" element="tns:AuthenticateBigMessage" />
|
|
65
|
+
</message>
|
|
66
|
+
<message name="AuthenticateBigMessageResponse">
|
|
67
|
+
<part name="parameter" element="tns:AuthenticateBigMessageResponse" />
|
|
68
|
+
</message>
|
|
69
|
+
|
|
70
|
+
<message name="SignedBigMessageDownloadRequest">
|
|
71
|
+
<part name="parameter" element="tns:SignedBigMessageDownload" />
|
|
72
|
+
</message>
|
|
73
|
+
<message name="SignedBigMessageDownloadResponse">
|
|
74
|
+
<part name="parameter" element="tns:SignedBigMessageDownloadResponse" />
|
|
75
|
+
</message>
|
|
76
|
+
|
|
77
|
+
<message name="SignedSentBigMessageDownloadRequest">
|
|
78
|
+
<part name="parameter" element="tns:SignedSentBigMessageDownload" />
|
|
79
|
+
</message>
|
|
80
|
+
<message name="SignedSentBigMessageDownloadResponse">
|
|
81
|
+
<part name="parameter" element="tns:SignedSentBigMessageDownloadResponse" />
|
|
82
|
+
</message>
|
|
83
|
+
|
|
84
|
+
<message name="BigMessageDownloadRequest">
|
|
85
|
+
<part name="parameter" element="tns:BigMessageDownload" />
|
|
86
|
+
</message>
|
|
87
|
+
<message name="BigMessageDownloadResponse">
|
|
88
|
+
<part name="parameter" element="tns:BigMessageDownloadResponse" />
|
|
89
|
+
</message>
|
|
90
|
+
|
|
91
|
+
<!-- ******************************************************************* -->
|
|
92
|
+
<portType name="dmVoDZPortType">
|
|
93
|
+
|
|
94
|
+
<operation name="UploadAttachment">
|
|
95
|
+
<input message="tns:UploadAttachmentRequest"/>
|
|
96
|
+
<output message="tns:UploadAttachmentResponse"/>
|
|
97
|
+
</operation>
|
|
98
|
+
|
|
99
|
+
<operation name="DownloadAttachment">
|
|
100
|
+
<input message="tns:DownloadAttachmentRequest"/>
|
|
101
|
+
<output message="tns:DownloadAttachmentResponse"/>
|
|
102
|
+
</operation>
|
|
103
|
+
|
|
104
|
+
<operation name="CreateBigMessage">
|
|
105
|
+
<input message="tns:CreateBigMessageRequest"/>
|
|
106
|
+
<output message="tns:CreateBigMessageResponse"/>
|
|
107
|
+
</operation>
|
|
108
|
+
|
|
109
|
+
<operation name="AuthenticateBigMessage">
|
|
110
|
+
<input message="tns:AuthenticateBigMessageRequest"/>
|
|
111
|
+
<output message="tns:AuthenticateBigMessageResponse"/>
|
|
112
|
+
</operation>
|
|
113
|
+
|
|
114
|
+
<operation name="SignedBigMessageDownload">
|
|
115
|
+
<input message="tns:SignedBigMessageDownloadRequest"/>
|
|
116
|
+
<output message="tns:SignedBigMessageDownloadResponse"/>
|
|
117
|
+
</operation>
|
|
118
|
+
|
|
119
|
+
<operation name="SignedSentBigMessageDownload">
|
|
120
|
+
<input message="tns:SignedSentBigMessageDownloadRequest"/>
|
|
121
|
+
<output message="tns:SignedSentBigMessageDownloadResponse"/>
|
|
122
|
+
</operation>
|
|
123
|
+
|
|
124
|
+
<operation name="BigMessageDownload">
|
|
125
|
+
<input message="tns:BigMessageDownloadRequest"/>
|
|
126
|
+
<output message="tns:BigMessageDownloadResponse"/>
|
|
127
|
+
</operation>
|
|
128
|
+
|
|
129
|
+
</portType>
|
|
130
|
+
|
|
131
|
+
<!-- ******************************************************************* -->
|
|
132
|
+
<binding name="dmVoDZBinding" type="tns:dmVoDZPortType">
|
|
133
|
+
<soap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
|
134
|
+
|
|
135
|
+
<operation name="UploadAttachment">
|
|
136
|
+
<soap12:operation soapAction="" />
|
|
137
|
+
<input>
|
|
138
|
+
<soap12:body use="literal" />
|
|
139
|
+
</input>
|
|
140
|
+
<output>
|
|
141
|
+
<soap12:body use="literal" />
|
|
142
|
+
</output>
|
|
143
|
+
</operation>
|
|
144
|
+
|
|
145
|
+
<operation name="DownloadAttachment">
|
|
146
|
+
<soap12:operation soapAction="" />
|
|
147
|
+
<input>
|
|
148
|
+
<soap12:body use="literal" />
|
|
149
|
+
</input>
|
|
150
|
+
<output>
|
|
151
|
+
<soap12:body use="literal" />
|
|
152
|
+
</output>
|
|
153
|
+
</operation>
|
|
154
|
+
|
|
155
|
+
<operation name="CreateBigMessage">
|
|
156
|
+
<soap12:operation soapAction="" />
|
|
157
|
+
<input>
|
|
158
|
+
<soap12:body use="literal" />
|
|
159
|
+
</input>
|
|
160
|
+
<output>
|
|
161
|
+
<soap12:body use="literal" />
|
|
162
|
+
</output>
|
|
163
|
+
</operation>
|
|
164
|
+
|
|
165
|
+
<operation name="AuthenticateBigMessage">
|
|
166
|
+
<soap12:operation soapAction="" />
|
|
167
|
+
<input>
|
|
168
|
+
<soap12:body use="literal" />
|
|
169
|
+
</input>
|
|
170
|
+
<output>
|
|
171
|
+
<soap12:body use="literal" />
|
|
172
|
+
</output>
|
|
173
|
+
</operation>
|
|
174
|
+
|
|
175
|
+
<operation name="SignedBigMessageDownload">
|
|
176
|
+
<soap12:operation soapAction="" />
|
|
177
|
+
<input>
|
|
178
|
+
<soap12:body use="literal" />
|
|
179
|
+
</input>
|
|
180
|
+
<output>
|
|
181
|
+
<soap12:body use="literal" />
|
|
182
|
+
</output>
|
|
183
|
+
</operation>
|
|
184
|
+
|
|
185
|
+
<operation name="SignedSentBigMessageDownload">
|
|
186
|
+
<soap12:operation soapAction="" />
|
|
187
|
+
<input>
|
|
188
|
+
<soap12:body use="literal" />
|
|
189
|
+
</input>
|
|
190
|
+
<output>
|
|
191
|
+
<soap12:body use="literal" />
|
|
192
|
+
</output>
|
|
193
|
+
</operation>
|
|
194
|
+
|
|
195
|
+
<operation name="BigMessageDownload">
|
|
196
|
+
<soap12:operation soapAction="" />
|
|
197
|
+
<input>
|
|
198
|
+
<soap12:body use="literal" />
|
|
199
|
+
</input>
|
|
200
|
+
<output>
|
|
201
|
+
<soap12:body use="literal" />
|
|
202
|
+
</output>
|
|
203
|
+
</operation>
|
|
204
|
+
|
|
205
|
+
</binding>
|
|
206
|
+
|
|
207
|
+
<!-- ******************************************************************* -->
|
|
208
|
+
<service name="dmVoDZWebService">
|
|
209
|
+
<port name="dmVoDZPortType" binding="tns:dmVoDZBinding">
|
|
210
|
+
<soap12:address location="https://ws2.mojedatovaschranka.cz/DS/vodz"/>
|
|
211
|
+
</port>
|
|
212
|
+
</service>
|
|
213
|
+
|
|
214
|
+
</definitions>
|
|
215
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
2
|
+
<!-- *********************************************************************
|
|
3
|
+
|
|
4
|
+
verze: 3.09
|
|
5
|
+
klasifikace: Veřejný dokument
|
|
6
|
+
|
|
7
|
+
WSDL pro služby archivace
|
|
8
|
+
ArchiveISDSDocument - platí i pro běžné zprávy i VoDZ
|
|
9
|
+
|
|
10
|
+
Změny:
|
|
11
|
+
24.11.2021 verze 3.0
|
|
12
|
+
24.05.2022 verze 3.01 - sjednocení verzí
|
|
13
|
+
31.10.2022 verze 3.03 - sjednocení verzí
|
|
14
|
+
20.10.2023 verze 3.04 - sjednocení verzí
|
|
15
|
+
26.01.2024 verze 3.05 - sjednocení verzí
|
|
16
|
+
21.10.2024 verze 3.07 - sjednocení verzí
|
|
17
|
+
20.02.2025 verze 3.09 - nová služba ArchiveISDSDocument
|
|
18
|
+
|
|
19
|
+
************************************************************************ -->
|
|
20
|
+
|
|
21
|
+
<definitions name="ISDS_VoDZ" targetNamespace="http://isds.czechpoint.cz/v20"
|
|
22
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
|
23
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
24
|
+
xmlns:tns="http://isds.czechpoint.cz/v20"
|
|
25
|
+
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
|
|
26
|
+
>
|
|
27
|
+
|
|
28
|
+
<types>
|
|
29
|
+
<xs:schema targetNamespace="http://isds.czechpoint.cz/v20">
|
|
30
|
+
<xs:include schemaLocation="dmBaseTypes.xsd" />
|
|
31
|
+
</xs:schema>
|
|
32
|
+
</types>
|
|
33
|
+
|
|
34
|
+
<!-- ******************************************************************* -->
|
|
35
|
+
|
|
36
|
+
<message name="ArchiveISDSDocumentRequest">
|
|
37
|
+
<part name="parameter" element="tns:ArchiveISDSDocument" />
|
|
38
|
+
</message>
|
|
39
|
+
<message name="ArchiveISDSDocumentResponse">
|
|
40
|
+
<part name="parameter" element="tns:ArchiveISDSDocumentResponse" />
|
|
41
|
+
</message>
|
|
42
|
+
|
|
43
|
+
<!-- ******************************************************************* -->
|
|
44
|
+
<portType name="dmVoDZPortType">
|
|
45
|
+
|
|
46
|
+
<operation name="ArchiveISDSDocument">
|
|
47
|
+
<input message="tns:ArchiveISDSDocumentRequest"/>
|
|
48
|
+
<output message="tns:ArchiveISDSDocumentResponse"/>
|
|
49
|
+
</operation>
|
|
50
|
+
|
|
51
|
+
</portType>
|
|
52
|
+
|
|
53
|
+
<!-- ******************************************************************* -->
|
|
54
|
+
<binding name="dmVoDZBinding" type="tns:dmVoDZPortType">
|
|
55
|
+
<soap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
|
56
|
+
|
|
57
|
+
<operation name="ArchiveISDSDocument">
|
|
58
|
+
<soap12:operation soapAction="" />
|
|
59
|
+
<input>
|
|
60
|
+
<soap12:body use="literal" />
|
|
61
|
+
</input>
|
|
62
|
+
<output>
|
|
63
|
+
<soap12:body use="literal" />
|
|
64
|
+
</output>
|
|
65
|
+
</operation>
|
|
66
|
+
|
|
67
|
+
</binding>
|
|
68
|
+
|
|
69
|
+
<!-- ******************************************************************* -->
|
|
70
|
+
<service name="dmArchWebService">
|
|
71
|
+
<port name="dmVoDZPortType" binding="tns:dmVoDZBinding">
|
|
72
|
+
<soap12:address location="https://ws2.mojedatovaschranka.cz/DS/arch"/>
|
|
73
|
+
</port>
|
|
74
|
+
</service>
|
|
75
|
+
|
|
76
|
+
</definitions>
|
|
77
|
+
|