czech-data-box 0.1.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.
Files changed (41) hide show
  1. package/.gitattributes +16 -0
  2. package/.nvmrc +1 -0
  3. package/.prettierignore +1 -0
  4. package/.prettierrc.yaml +6 -0
  5. package/.vscode/launch.json +15 -0
  6. package/.vscode/settings.json +5 -0
  7. package/CHANGELOG.md +17 -0
  8. package/CODE_OF_CONDUCT.md +128 -0
  9. package/CONTRIBUTING.md +84 -0
  10. package/LICENSE +21 -0
  11. package/README.md +76 -0
  12. package/eslint.config.js +26 -0
  13. package/examples/db_login_with_certificate.js +27 -0
  14. package/examples/db_search.js +27 -0
  15. package/examples/dm_operations.js +58 -0
  16. package/package.json +57 -0
  17. package/resources/certs/cacert_postsignum_vca4.pem +44 -0
  18. package/resources/wsdl/ChangePassword.wsdl +84 -0
  19. package/resources/wsdl/ChangePasswordTypes.xsd +69 -0
  20. package/resources/wsdl/ExtWs.wsdl +65 -0
  21. package/resources/wsdl/dbTypes.xsd +1688 -0
  22. package/resources/wsdl/db_access.wsdl +197 -0
  23. package/resources/wsdl/db_manipulations.wsdl +598 -0
  24. package/resources/wsdl/db_search.wsdl +362 -0
  25. package/resources/wsdl/dmBaseTypes.xsd +1497 -0
  26. package/resources/wsdl/dm_VoDZ.wsdl +212 -0
  27. package/resources/wsdl/dm_info.wsdl +412 -0
  28. package/resources/wsdl/dm_operations.wsdl +242 -0
  29. package/src/index.js +4 -0
  30. package/src/lib/ISDSBox.js +309 -0
  31. package/src/lib/ISDSSentOutFiles.js +84 -0
  32. package/src/lib/ISDSSoapClient.js +201 -0
  33. package/src/lib/config.js +64 -0
  34. package/src/models/DataBox.js +142 -0
  35. package/src/models/DataMessage.js +153 -0
  36. package/src/models/DataMessageFile.js +69 -0
  37. package/src/models/DataMessageFiles.js +23 -0
  38. package/test/ISDSBox.test.js +129 -0
  39. package/test/ISDSSentOutFiles.test.js +124 -0
  40. package/test/ISDSSoapClient.test.js +81 -0
  41. package/test/communication_test.pdf +0 -0
@@ -0,0 +1,598 @@
1
+ <?xml version = '1.0' encoding = 'UTF-8'?>
2
+ <!-- *********************************************************************
3
+ WSDL pro služby manipulujícími s datovými schránkami
4
+
5
+ verze: 3.04
6
+ klasifikace: Veřejný dokument
7
+ *********************************************************************
8
+ Seznam služeb:
9
+ ==============
10
+ CreateDataBox
11
+ CreateDataBox2
12
+ DeleteDataBox
13
+ DeleteDataBox2
14
+ UpdateDataBoxDescr
15
+ UpdateDataBoxDescr2
16
+ AddDataBoxUser
17
+ AddDataBoxUser2
18
+ DeleteDataBoxUser
19
+ DeleteDataBoxUser2
20
+ UpdateDataBoxUser
21
+ UpdateDataBoxUser2
22
+ NewAccessData
23
+ NewAccessData2
24
+ DisableDataBoxExternally
25
+ DisableDataBoxExternally2
26
+ DisableOwnDataBox
27
+ DisableOwnDataBox2
28
+ EnableOwnDataBox
29
+ EnableOwnDataBox2
30
+ SetOpenAddressing
31
+ ClearOpenAddressing
32
+ GetDataBoxUsers2
33
+
34
+
35
+ změny:
36
+ 3.2.2009 verze 0.1
37
+ 20.3.2009 verze 1.0 - formální úpravy vyhovující WS-I Basic Profile
38
+ 28.4.2009 verze 1.1 - přidána WS CheckDataBox
39
+ 3.6.2009 verze 2.0 - přidána dvojice služeb [Set|Clear]OpenAddressing
40
+ - přidána dvojice služeb [Set|Clear]EffectiveOVM
41
+ 11.6.2009 verze 2.1 - přidána WS CreateDataBoxPFOInfo
42
+ 1.1.2010 verze 2.7 - přesunuta WS GetDataBoxUsers ze zrušeného db_supplementary.wsdl
43
+ 11.10.2010 verze 2.10 - změna URL v důsledku přechodu na Basic autentizaci
44
+ - přidána WS GetDataBoxList
45
+ 06.03.2012 verze 2.16 - přidána WS ChangeBoxesType
46
+ 31.1.2017 verze 2.26 - odebrány CreateDataBoxPFOInfo a ChangeBoxesType
47
+ 2.5.2017 verze 2.27 - sjednocení verzí
48
+ 23.4.2018 verze 2.28 - přidána služba GetDataBoxUsers2, odstraněny WS Activate, SetEffectiveOVM, ClearEffectiveOVM
49
+ 24.7.2018 verze 2.29 - sjednocení verzí
50
+ 4.9.2018 verze 2.31 - změna formátů UserInfo a OwnerInfo, přidání idOVM, odebráno GetDataBoxUsers, FindDataBox a CheckDataBox přesunuty do db_search; "dvojkové" verze služeb
51
+ 13.1.2021 verze 2.32 - přidány typy schránek PFO_ZNALEC a PFO_TLUMOCNIK
52
+ 29.7.202 verze 2.33 - sjednocení verzí
53
+ 25.4.2022 verze 2.35 - sjednocení verzí
54
+
55
+ 31.10.2022 verze 3.03 - sjednocení verzí
56
+ 20.10.2023 verze 3.04 - sjednocení verzí
57
+
58
+ ************************************************************************ -->
59
+
60
+ <definitions name="ISDS_db" targetNamespace="http://isds.czechpoint.cz/v20"
61
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
62
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
63
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
64
+ xmlns:tns="http://isds.czechpoint.cz/v20">
65
+
66
+ <types>
67
+ <xs:schema targetNamespace="http://isds.czechpoint.cz/v20">
68
+ <xs:include schemaLocation="dbTypes.xsd" />
69
+ </xs:schema>
70
+ </types>
71
+
72
+ <!-- ******************************************************************* -->
73
+
74
+ <message name="CreateDataBoxRequest">
75
+ <part name="parameter" element="tns:CreateDataBox" />
76
+ </message>
77
+ <message name="CreateDataBoxResponse">
78
+ <part name="parameter" element="tns:CreateDataBoxResponse" />
79
+ </message>
80
+
81
+ <message name="CreateDataBox2Request">
82
+ <part name="parameter" element="tns:CreateDataBox2" />
83
+ </message>
84
+ <message name="CreateDataBox2Response">
85
+ <part name="parameter" element="tns:CreateDataBox2Response" />
86
+ </message>
87
+
88
+ <message name="DeleteDataBoxRequest">
89
+ <part name="parameter" element="tns:DeleteDataBox" />
90
+ </message>
91
+ <message name="DeleteDataBoxResponse">
92
+ <part name="parameter" element="tns:DeleteDataBoxResponse" />
93
+ </message>
94
+
95
+ <message name="DeleteDataBox2Request">
96
+ <part name="parameter" element="tns:DeleteDataBox2" />
97
+ </message>
98
+ <message name="DeleteDataBox2Response">
99
+ <part name="parameter" element="tns:DeleteDataBox2Response" />
100
+ </message>
101
+
102
+ <message name="UpdateDataBoxDescrRequest">
103
+ <part name="parameter" element="tns:UpdateDataBoxDescr" />
104
+ </message>
105
+ <message name="UpdateDataBoxDescrResponse">
106
+ <part name="parameter" element="tns:UpdateDataBoxDescrResponse" />
107
+ </message>
108
+
109
+ <message name="UpdateDataBoxDescr2Request">
110
+ <part name="parameter" element="tns:UpdateDataBoxDescr2" />
111
+ </message>
112
+ <message name="UpdateDataBoxDescr2Response">
113
+ <part name="parameter" element="tns:UpdateDataBoxDescr2Response" />
114
+ </message>
115
+
116
+ <message name="AddDataBoxUserRequest">
117
+ <part name="parameter" element="tns:AddDataBoxUser" />
118
+ </message>
119
+ <message name="AddDataBoxUserResponse">
120
+ <part name="parameter" element="tns:AddDataBoxUserResponse" />
121
+ </message>
122
+
123
+ <message name="AddDataBoxUser2Request">
124
+ <part name="parameter" element="tns:AddDataBoxUser2" />
125
+ </message>
126
+ <message name="AddDataBoxUser2Response">
127
+ <part name="parameter" element="tns:AddDataBoxUser2Response" />
128
+ </message>
129
+
130
+ <message name="DeleteDataBoxUserRequest">
131
+ <part name="parameter" element="tns:DeleteDataBoxUser" />
132
+ </message>
133
+ <message name="DeleteDataBoxUserResponse">
134
+ <part name="parameter" element="tns:DeleteDataBoxUserResponse" />
135
+ </message>
136
+
137
+ <message name="DeleteDataBoxUser2Request">
138
+ <part name="parameter" element="tns:DeleteDataBoxUser2" />
139
+ </message>
140
+ <message name="DeleteDataBoxUser2Response">
141
+ <part name="parameter" element="tns:DeleteDataBoxUser2Response" />
142
+ </message>
143
+
144
+ <message name="UpdateDataBoxUserRequest">
145
+ <part name="parameter" element="tns:UpdateDataBoxUser" />
146
+ </message>
147
+ <message name="UpdateDataBoxUserResponse">
148
+ <part name="parameter" element="tns:UpdateDataBoxUserResponse" />
149
+ </message>
150
+
151
+ <message name="UpdateDataBoxUser2Request">
152
+ <part name="parameter" element="tns:UpdateDataBoxUser2" />
153
+ </message>
154
+ <message name="UpdateDataBoxUser2Response">
155
+ <part name="parameter" element="tns:UpdateDataBoxUser2Response" />
156
+ </message>
157
+
158
+ <message name="NewAccessDataRequest">
159
+ <part name="parameter" element="tns:NewAccessData" />
160
+ </message>
161
+ <message name="NewAccessDataResponse">
162
+ <part name="parameter" element="tns:NewAccessDataResponse" />
163
+ </message>
164
+
165
+ <message name="NewAccessData2Request">
166
+ <part name="parameter" element="tns:NewAccessData2" />
167
+ </message>
168
+ <message name="NewAccessData2Response">
169
+ <part name="parameter" element="tns:NewAccessData2Response" />
170
+ </message>
171
+
172
+ <message name="DisableDataBoxExternallyRequest">
173
+ <part name="parameter" element="tns:DisableDataBoxExternally" />
174
+ </message>
175
+ <message name="DisableDataBoxExternallyResponse">
176
+ <part name="parameter" element="tns:DisableDataBoxExternallyResponse" />
177
+ </message>
178
+
179
+ <message name="DisableDataBoxExternally2Request">
180
+ <part name="parameter" element="tns:DisableDataBoxExternally2" />
181
+ </message>
182
+ <message name="DisableDataBoxExternally2Response">
183
+ <part name="parameter" element="tns:DisableDataBoxExternally2Response" />
184
+ </message>
185
+
186
+ <message name="DisableOwnDataBoxRequest">
187
+ <part name="parameter" element="tns:DisableOwnDataBox" />
188
+ </message>
189
+ <message name="DisableOwnDataBoxResponse">
190
+ <part name="parameter" element="tns:DisableOwnDataBoxResponse" />
191
+ </message>
192
+
193
+ <message name="DisableOwnDataBox2Request">
194
+ <part name="parameter" element="tns:DisableOwnDataBox2" />
195
+ </message>
196
+ <message name="DisableOwnDataBox2Response">
197
+ <part name="parameter" element="tns:DisableOwnDataBox2Response" />
198
+ </message>
199
+
200
+ <message name="EnableOwnDataBoxRequest">
201
+ <part name="parameter" element="tns:EnableOwnDataBox" />
202
+ </message>
203
+ <message name="EnableOwnDataBoxResponse">
204
+ <part name="parameter" element="tns:EnableOwnDataBoxResponse" />
205
+ </message>
206
+
207
+ <message name="EnableOwnDataBox2Request">
208
+ <part name="parameter" element="tns:EnableOwnDataBox2" />
209
+ </message>
210
+ <message name="EnableOwnDataBox2Response">
211
+ <part name="parameter" element="tns:EnableOwnDataBox2Response" />
212
+ </message>
213
+
214
+ <message name="SetOpenAddressingRequest">
215
+ <part name="parameter" element="tns:SetOpenAddressing" />
216
+ </message>
217
+ <message name="SetOpenAddressingResponse">
218
+ <part name="parameter" element="tns:SetOpenAddressingResponse" />
219
+ </message>
220
+
221
+ <message name="ClearOpenAddressingRequest">
222
+ <part name="parameter" element="tns:ClearOpenAddressing" />
223
+ </message>
224
+ <message name="ClearOpenAddressingResponse">
225
+ <part name="parameter" element="tns:ClearOpenAddressingResponse" />
226
+ </message>
227
+
228
+ <message name="GetDataBoxUsers2Request">
229
+ <part name="parameter" element="tns:GetDataBoxUsers2" />
230
+ </message>
231
+ <message name="GetDataBoxUsers2Response">
232
+ <part name="parameter" element="tns:GetDataBoxUsers2Response" />
233
+ </message>
234
+
235
+ <!-- ******************************************************************* -->
236
+ <portType name="DataBoxManipulationPortType">
237
+ <operation name="CreateDataBox">
238
+ <input message="tns:CreateDataBoxRequest"/>
239
+ <output message="tns:CreateDataBoxResponse"/>
240
+ </operation>
241
+
242
+ <operation name="CreateDataBox2">
243
+ <input message="tns:CreateDataBox2Request"/>
244
+ <output message="tns:CreateDataBox2Response"/>
245
+ </operation>
246
+
247
+ <operation name="DeleteDataBox">
248
+ <input message="tns:DeleteDataBoxRequest"/>
249
+ <output message="tns:DeleteDataBoxResponse"/>
250
+ </operation>
251
+
252
+ <operation name="DeleteDataBox2">
253
+ <input message="tns:DeleteDataBox2Request"/>
254
+ <output message="tns:DeleteDataBox2Response"/>
255
+ </operation>
256
+
257
+ <operation name="UpdateDataBoxDescr">
258
+ <input message="tns:UpdateDataBoxDescrRequest"/>
259
+ <output message="tns:UpdateDataBoxDescrResponse"/>
260
+ </operation>
261
+
262
+ <operation name="UpdateDataBoxDescr2">
263
+ <input message="tns:UpdateDataBoxDescr2Request"/>
264
+ <output message="tns:UpdateDataBoxDescr2Response"/>
265
+ </operation>
266
+
267
+ <operation name="AddDataBoxUser">
268
+ <input message="tns:AddDataBoxUserRequest"/>
269
+ <output message="tns:AddDataBoxUserResponse"/>
270
+ </operation>
271
+
272
+ <operation name="AddDataBoxUser2">
273
+ <input message="tns:AddDataBoxUser2Request"/>
274
+ <output message="tns:AddDataBoxUser2Response"/>
275
+ </operation>
276
+
277
+ <operation name="DeleteDataBoxUser">
278
+ <input message="tns:DeleteDataBoxUserRequest"/>
279
+ <output message="tns:DeleteDataBoxUserResponse"/>
280
+ </operation>
281
+
282
+ <operation name="DeleteDataBoxUser2">
283
+ <input message="tns:DeleteDataBoxUser2Request"/>
284
+ <output message="tns:DeleteDataBoxUser2Response"/>
285
+ </operation>
286
+
287
+ <operation name="UpdateDataBoxUser">
288
+ <input message="tns:UpdateDataBoxUserRequest"/>
289
+ <output message="tns:UpdateDataBoxUserResponse"/>
290
+ </operation>
291
+
292
+ <operation name="UpdateDataBoxUser2">
293
+ <input message="tns:UpdateDataBoxUser2Request"/>
294
+ <output message="tns:UpdateDataBoxUser2Response"/>
295
+ </operation>
296
+
297
+ <operation name="NewAccessData">
298
+ <input message="tns:NewAccessDataRequest"/>
299
+ <output message="tns:NewAccessDataResponse"/>
300
+ </operation>
301
+
302
+ <operation name="NewAccessData2">
303
+ <input message="tns:NewAccessData2Request"/>
304
+ <output message="tns:NewAccessData2Response"/>
305
+ </operation>
306
+
307
+ <operation name="DisableDataBoxExternally">
308
+ <input message="tns:DisableDataBoxExternallyRequest"/>
309
+ <output message="tns:DisableDataBoxExternallyResponse"/>
310
+ </operation>
311
+
312
+ <operation name="DisableDataBoxExternally2">
313
+ <input message="tns:DisableDataBoxExternally2Request"/>
314
+ <output message="tns:DisableDataBoxExternally2Response"/>
315
+ </operation>
316
+
317
+ <operation name="DisableOwnDataBox">
318
+ <input message="tns:DisableOwnDataBoxRequest"/>
319
+ <output message="tns:DisableOwnDataBoxResponse"/>
320
+ </operation>
321
+
322
+ <operation name="DisableOwnDataBox2">
323
+ <input message="tns:DisableOwnDataBox2Request"/>
324
+ <output message="tns:DisableOwnDataBox2Response"/>
325
+ </operation>
326
+
327
+ <operation name="EnableOwnDataBox">
328
+ <input message="tns:EnableOwnDataBoxRequest"/>
329
+ <output message="tns:EnableOwnDataBoxResponse"/>
330
+ </operation>
331
+
332
+ <operation name="EnableOwnDataBox2">
333
+ <input message="tns:EnableOwnDataBox2Request"/>
334
+ <output message="tns:EnableOwnDataBox2Response"/>
335
+ </operation>
336
+
337
+ <operation name="SetOpenAddressing">
338
+ <input message="tns:SetOpenAddressingRequest"/>
339
+ <output message="tns:SetOpenAddressingResponse"/>
340
+ </operation>
341
+
342
+ <operation name="ClearOpenAddressing">
343
+ <input message="tns:ClearOpenAddressingRequest"/>
344
+ <output message="tns:ClearOpenAddressingResponse"/>
345
+ </operation>
346
+
347
+ <operation name="GetDataBoxUsers2">
348
+ <input message="tns:GetDataBoxUsers2Request"/>
349
+ <output message="tns:GetDataBoxUsers2Response"/>
350
+ </operation>
351
+
352
+ </portType>
353
+
354
+ <!-- ******************************************************************* -->
355
+ <binding name="DataBoxManipulationBinding" type="tns:DataBoxManipulationPortType">
356
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
357
+
358
+ <operation name="CreateDataBox">
359
+ <soap:operation soapAction="" />
360
+ <input>
361
+ <soap:body use="literal"/>
362
+ </input>
363
+ <output>
364
+ <soap:body use="literal"/>
365
+ </output>
366
+ </operation>
367
+
368
+ <operation name="CreateDataBox2">
369
+ <soap:operation soapAction="" />
370
+ <input>
371
+ <soap:body use="literal"/>
372
+ </input>
373
+ <output>
374
+ <soap:body use="literal"/>
375
+ </output>
376
+ </operation>
377
+
378
+ <operation name="DeleteDataBox">
379
+ <soap:operation soapAction="" />
380
+ <input>
381
+ <soap:body use="literal"/>
382
+ </input>
383
+ <output>
384
+ <soap:body use="literal"/>
385
+ </output>
386
+ </operation>
387
+
388
+ <operation name="DeleteDataBox2">
389
+ <soap:operation soapAction="" />
390
+ <input>
391
+ <soap:body use="literal"/>
392
+ </input>
393
+ <output>
394
+ <soap:body use="literal"/>
395
+ </output>
396
+ </operation>
397
+
398
+ <operation name="UpdateDataBoxDescr">
399
+ <soap:operation soapAction="" />
400
+ <input>
401
+ <soap:body use="literal"/>
402
+ </input>
403
+ <output>
404
+ <soap:body use="literal"/>
405
+ </output>
406
+ </operation>
407
+
408
+ <operation name="UpdateDataBoxDescr2">
409
+ <soap:operation soapAction="" />
410
+ <input>
411
+ <soap:body use="literal"/>
412
+ </input>
413
+ <output>
414
+ <soap:body use="literal"/>
415
+ </output>
416
+ </operation>
417
+
418
+ <operation name="AddDataBoxUser">
419
+ <soap:operation soapAction="" />
420
+ <input>
421
+ <soap:body use="literal"/>
422
+ </input>
423
+ <output>
424
+ <soap:body use="literal"/>
425
+ </output>
426
+ </operation>
427
+
428
+ <operation name="AddDataBoxUser2">
429
+ <soap:operation soapAction="" />
430
+ <input>
431
+ <soap:body use="literal"/>
432
+ </input>
433
+ <output>
434
+ <soap:body use="literal"/>
435
+ </output>
436
+ </operation>
437
+
438
+ <operation name="DeleteDataBoxUser2">
439
+ <soap:operation soapAction="" />
440
+ <input>
441
+ <soap:body use="literal"/>
442
+ </input>
443
+ <output>
444
+ <soap:body use="literal"/>
445
+ </output>
446
+ </operation>
447
+
448
+ <operation name="DeleteDataBoxUser">
449
+ <soap:operation soapAction="" />
450
+ <input>
451
+ <soap:body use="literal"/>
452
+ </input>
453
+ <output>
454
+ <soap:body use="literal"/>
455
+ </output>
456
+ </operation>
457
+
458
+ <operation name="UpdateDataBoxUser">
459
+ <soap:operation soapAction="" />
460
+ <input>
461
+ <soap:body use="literal"/>
462
+ </input>
463
+ <output>
464
+ <soap:body use="literal"/>
465
+ </output>
466
+ </operation>
467
+
468
+ <operation name="UpdateDataBoxUser2">
469
+ <soap:operation soapAction="" />
470
+ <input>
471
+ <soap:body use="literal"/>
472
+ </input>
473
+ <output>
474
+ <soap:body use="literal"/>
475
+ </output>
476
+ </operation>
477
+
478
+ <operation name="NewAccessData">
479
+ <soap:operation soapAction="" />
480
+ <input>
481
+ <soap:body use="literal"/>
482
+ </input>
483
+ <output>
484
+ <soap:body use="literal"/>
485
+ </output>
486
+ </operation>
487
+
488
+ <operation name="NewAccessData2">
489
+ <soap:operation soapAction="" />
490
+ <input>
491
+ <soap:body use="literal"/>
492
+ </input>
493
+ <output>
494
+ <soap:body use="literal"/>
495
+ </output>
496
+ </operation>
497
+
498
+ <operation name="DisableDataBoxExternally">
499
+ <soap:operation soapAction="" />
500
+ <input>
501
+ <soap:body use="literal"/>
502
+ </input>
503
+ <output>
504
+ <soap:body use="literal"/>
505
+ </output>
506
+ </operation>
507
+
508
+ <operation name="DisableDataBoxExternally2">
509
+ <soap:operation soapAction="" />
510
+ <input>
511
+ <soap:body use="literal"/>
512
+ </input>
513
+ <output>
514
+ <soap:body use="literal"/>
515
+ </output>
516
+ </operation>
517
+
518
+ <operation name="DisableOwnDataBox">
519
+ <soap:operation soapAction="" />
520
+ <input>
521
+ <soap:body use="literal"/>
522
+ </input>
523
+ <output>
524
+ <soap:body use="literal"/>
525
+ </output>
526
+ </operation>
527
+
528
+ <operation name="DisableOwnDataBox2">
529
+ <soap:operation soapAction="" />
530
+ <input>
531
+ <soap:body use="literal"/>
532
+ </input>
533
+ <output>
534
+ <soap:body use="literal"/>
535
+ </output>
536
+ </operation>
537
+
538
+ <operation name="EnableOwnDataBox">
539
+ <soap:operation soapAction="" />
540
+ <input>
541
+ <soap:body use="literal"/>
542
+ </input>
543
+ <output>
544
+ <soap:body use="literal"/>
545
+ </output>
546
+ </operation>
547
+
548
+ <operation name="EnableOwnDataBox2">
549
+ <soap:operation soapAction="" />
550
+ <input>
551
+ <soap:body use="literal"/>
552
+ </input>
553
+ <output>
554
+ <soap:body use="literal"/>
555
+ </output>
556
+ </operation>
557
+
558
+ <operation name="SetOpenAddressing">
559
+ <soap:operation soapAction="" />
560
+ <input>
561
+ <soap:body use="literal"/>
562
+ </input>
563
+ <output>
564
+ <soap:body use="literal"/>
565
+ </output>
566
+ </operation>
567
+
568
+ <operation name="ClearOpenAddressing">
569
+ <soap:operation soapAction="" />
570
+ <input>
571
+ <soap:body use="literal"/>
572
+ </input>
573
+ <output>
574
+ <soap:body use="literal"/>
575
+ </output>
576
+ </operation>
577
+
578
+ <operation name="GetDataBoxUsers2">
579
+ <soap:operation soapAction="" />
580
+ <input>
581
+ <soap:body use="literal" />
582
+ </input>
583
+ <output>
584
+ <soap:body use="literal" />
585
+ </output>
586
+ </operation>
587
+
588
+ </binding>
589
+
590
+ <!-- ******************************************************************* -->
591
+ <service name="DataBoxManipulation">
592
+ <port name="DataBoxManipulationPortType" binding="tns:DataBoxManipulationBinding">
593
+ <soap:address location="https://ws1.mojedatovaschranka.cz/DS/DsManage"/>
594
+ </port>
595
+ </service>
596
+
597
+ </definitions>
598
+