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.
- package/.gitattributes +16 -0
- package/.nvmrc +1 -0
- package/.prettierignore +1 -0
- package/.prettierrc.yaml +6 -0
- package/.vscode/launch.json +15 -0
- package/.vscode/settings.json +5 -0
- package/CHANGELOG.md +17 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/CONTRIBUTING.md +84 -0
- package/LICENSE +21 -0
- package/README.md +76 -0
- package/eslint.config.js +26 -0
- package/examples/db_login_with_certificate.js +27 -0
- package/examples/db_search.js +27 -0
- package/examples/dm_operations.js +58 -0
- package/package.json +57 -0
- package/resources/certs/cacert_postsignum_vca4.pem +44 -0
- package/resources/wsdl/ChangePassword.wsdl +84 -0
- package/resources/wsdl/ChangePasswordTypes.xsd +69 -0
- package/resources/wsdl/ExtWs.wsdl +65 -0
- package/resources/wsdl/dbTypes.xsd +1688 -0
- package/resources/wsdl/db_access.wsdl +197 -0
- package/resources/wsdl/db_manipulations.wsdl +598 -0
- package/resources/wsdl/db_search.wsdl +362 -0
- package/resources/wsdl/dmBaseTypes.xsd +1497 -0
- package/resources/wsdl/dm_VoDZ.wsdl +212 -0
- package/resources/wsdl/dm_info.wsdl +412 -0
- package/resources/wsdl/dm_operations.wsdl +242 -0
- package/src/index.js +4 -0
- package/src/lib/ISDSBox.js +309 -0
- package/src/lib/ISDSSentOutFiles.js +84 -0
- package/src/lib/ISDSSoapClient.js +201 -0
- package/src/lib/config.js +64 -0
- package/src/models/DataBox.js +142 -0
- package/src/models/DataMessage.js +153 -0
- package/src/models/DataMessageFile.js +69 -0
- package/src/models/DataMessageFiles.js +23 -0
- package/test/ISDSBox.test.js +129 -0
- package/test/ISDSSentOutFiles.test.js +124 -0
- package/test/ISDSSoapClient.test.js +81 -0
- package/test/communication_test.pdf +0 -0
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
2
|
+
<!-- *********************************************************************
|
|
3
|
+
|
|
4
|
+
verze: 3.04
|
|
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
|
+
<definitions name="ISDS_VoDZ" targetNamespace="http://isds.czechpoint.cz/v20"
|
|
25
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
|
26
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
27
|
+
xmlns:tns="http://isds.czechpoint.cz/v20"
|
|
28
|
+
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
|
|
29
|
+
>
|
|
30
|
+
|
|
31
|
+
<types>
|
|
32
|
+
<xs:schema targetNamespace="http://isds.czechpoint.cz/v20">
|
|
33
|
+
<xs:include schemaLocation="dmBaseTypes.xsd" />
|
|
34
|
+
</xs:schema>
|
|
35
|
+
</types>
|
|
36
|
+
|
|
37
|
+
<!-- ******************************************************************* -->
|
|
38
|
+
|
|
39
|
+
<message name="UploadAttachmentRequest">
|
|
40
|
+
<part name="parameter" element="tns:UploadAttachment" />
|
|
41
|
+
</message>
|
|
42
|
+
<message name="UploadAttachmentResponse">
|
|
43
|
+
<part name="parameter" element="tns:UploadAttachmentResponse" />
|
|
44
|
+
</message>
|
|
45
|
+
|
|
46
|
+
<message name="DownloadAttachmentRequest">
|
|
47
|
+
<part name="parameter" element="tns:DownloadAttachment" />
|
|
48
|
+
</message>
|
|
49
|
+
<message name="DownloadAttachmentResponse">
|
|
50
|
+
<part name="parameter" element="tns:DownloadAttachmentResponse" />
|
|
51
|
+
</message>
|
|
52
|
+
|
|
53
|
+
<message name="CreateBigMessageRequest">
|
|
54
|
+
<part name="parameter" element="tns:CreateBigMessage" />
|
|
55
|
+
</message>
|
|
56
|
+
<message name="CreateBigMessageResponse">
|
|
57
|
+
<part name="parameter" element="tns:CreateBigMessageResponse" />
|
|
58
|
+
</message>
|
|
59
|
+
|
|
60
|
+
<message name="AuthenticateBigMessageRequest">
|
|
61
|
+
<part name="parameter" element="tns:AuthenticateBigMessage" />
|
|
62
|
+
</message>
|
|
63
|
+
<message name="AuthenticateBigMessageResponse">
|
|
64
|
+
<part name="parameter" element="tns:AuthenticateBigMessageResponse" />
|
|
65
|
+
</message>
|
|
66
|
+
|
|
67
|
+
<message name="SignedBigMessageDownloadRequest">
|
|
68
|
+
<part name="parameter" element="tns:SignedBigMessageDownload" />
|
|
69
|
+
</message>
|
|
70
|
+
<message name="SignedBigMessageDownloadResponse">
|
|
71
|
+
<part name="parameter" element="tns:SignedBigMessageDownloadResponse" />
|
|
72
|
+
</message>
|
|
73
|
+
|
|
74
|
+
<message name="SignedSentBigMessageDownloadRequest">
|
|
75
|
+
<part name="parameter" element="tns:SignedSentBigMessageDownload" />
|
|
76
|
+
</message>
|
|
77
|
+
<message name="SignedSentBigMessageDownloadResponse">
|
|
78
|
+
<part name="parameter" element="tns:SignedSentBigMessageDownloadResponse" />
|
|
79
|
+
</message>
|
|
80
|
+
|
|
81
|
+
<message name="BigMessageDownloadRequest">
|
|
82
|
+
<part name="parameter" element="tns:BigMessageDownload" />
|
|
83
|
+
</message>
|
|
84
|
+
<message name="BigMessageDownloadResponse">
|
|
85
|
+
<part name="parameter" element="tns:BigMessageDownloadResponse" />
|
|
86
|
+
</message>
|
|
87
|
+
|
|
88
|
+
<!-- ******************************************************************* -->
|
|
89
|
+
<portType name="dmVoDZPortType">
|
|
90
|
+
|
|
91
|
+
<operation name="UploadAttachment">
|
|
92
|
+
<input message="tns:UploadAttachmentRequest"/>
|
|
93
|
+
<output message="tns:UploadAttachmentResponse"/>
|
|
94
|
+
</operation>
|
|
95
|
+
|
|
96
|
+
<operation name="DownloadAttachment">
|
|
97
|
+
<input message="tns:DownloadAttachmentRequest"/>
|
|
98
|
+
<output message="tns:DownloadAttachmentResponse"/>
|
|
99
|
+
</operation>
|
|
100
|
+
|
|
101
|
+
<operation name="CreateBigMessage">
|
|
102
|
+
<input message="tns:CreateBigMessageRequest"/>
|
|
103
|
+
<output message="tns:CreateBigMessageResponse"/>
|
|
104
|
+
</operation>
|
|
105
|
+
|
|
106
|
+
<operation name="AuthenticateBigMessage">
|
|
107
|
+
<input message="tns:AuthenticateBigMessageRequest"/>
|
|
108
|
+
<output message="tns:AuthenticateBigMessageResponse"/>
|
|
109
|
+
</operation>
|
|
110
|
+
|
|
111
|
+
<operation name="SignedBigMessageDownload">
|
|
112
|
+
<input message="tns:SignedBigMessageDownloadRequest"/>
|
|
113
|
+
<output message="tns:SignedBigMessageDownloadResponse"/>
|
|
114
|
+
</operation>
|
|
115
|
+
|
|
116
|
+
<operation name="SignedSentBigMessageDownload">
|
|
117
|
+
<input message="tns:SignedSentBigMessageDownloadRequest"/>
|
|
118
|
+
<output message="tns:SignedSentBigMessageDownloadResponse"/>
|
|
119
|
+
</operation>
|
|
120
|
+
|
|
121
|
+
<operation name="BigMessageDownload">
|
|
122
|
+
<input message="tns:BigMessageDownloadRequest"/>
|
|
123
|
+
<output message="tns:BigMessageDownloadResponse"/>
|
|
124
|
+
</operation>
|
|
125
|
+
|
|
126
|
+
</portType>
|
|
127
|
+
|
|
128
|
+
<!-- ******************************************************************* -->
|
|
129
|
+
<binding name="dmVoDZBinding" type="tns:dmVoDZPortType">
|
|
130
|
+
<soap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
|
131
|
+
|
|
132
|
+
<operation name="UploadAttachment">
|
|
133
|
+
<soap12:operation soapAction="" />
|
|
134
|
+
<input>
|
|
135
|
+
<soap12:body use="literal" />
|
|
136
|
+
</input>
|
|
137
|
+
<output>
|
|
138
|
+
<soap12:body use="literal" />
|
|
139
|
+
</output>
|
|
140
|
+
</operation>
|
|
141
|
+
|
|
142
|
+
<operation name="DownloadAttachment">
|
|
143
|
+
<soap12:operation soapAction="" />
|
|
144
|
+
<input>
|
|
145
|
+
<soap12:body use="literal" />
|
|
146
|
+
</input>
|
|
147
|
+
<output>
|
|
148
|
+
<soap12:body use="literal" />
|
|
149
|
+
</output>
|
|
150
|
+
</operation>
|
|
151
|
+
|
|
152
|
+
<operation name="CreateBigMessage">
|
|
153
|
+
<soap12:operation soapAction="" />
|
|
154
|
+
<input>
|
|
155
|
+
<soap12:body use="literal" />
|
|
156
|
+
</input>
|
|
157
|
+
<output>
|
|
158
|
+
<soap12:body use="literal" />
|
|
159
|
+
</output>
|
|
160
|
+
</operation>
|
|
161
|
+
|
|
162
|
+
<operation name="AuthenticateBigMessage">
|
|
163
|
+
<soap12:operation soapAction="" />
|
|
164
|
+
<input>
|
|
165
|
+
<soap12:body use="literal" />
|
|
166
|
+
</input>
|
|
167
|
+
<output>
|
|
168
|
+
<soap12:body use="literal" />
|
|
169
|
+
</output>
|
|
170
|
+
</operation>
|
|
171
|
+
|
|
172
|
+
<operation name="SignedBigMessageDownload">
|
|
173
|
+
<soap12:operation soapAction="" />
|
|
174
|
+
<input>
|
|
175
|
+
<soap12:body use="literal" />
|
|
176
|
+
</input>
|
|
177
|
+
<output>
|
|
178
|
+
<soap12:body use="literal" />
|
|
179
|
+
</output>
|
|
180
|
+
</operation>
|
|
181
|
+
|
|
182
|
+
<operation name="SignedSentBigMessageDownload">
|
|
183
|
+
<soap12:operation soapAction="" />
|
|
184
|
+
<input>
|
|
185
|
+
<soap12:body use="literal" />
|
|
186
|
+
</input>
|
|
187
|
+
<output>
|
|
188
|
+
<soap12:body use="literal" />
|
|
189
|
+
</output>
|
|
190
|
+
</operation>
|
|
191
|
+
|
|
192
|
+
<operation name="BigMessageDownload">
|
|
193
|
+
<soap12:operation soapAction="" />
|
|
194
|
+
<input>
|
|
195
|
+
<soap12:body use="literal" />
|
|
196
|
+
</input>
|
|
197
|
+
<output>
|
|
198
|
+
<soap12:body use="literal" />
|
|
199
|
+
</output>
|
|
200
|
+
</operation>
|
|
201
|
+
|
|
202
|
+
</binding>
|
|
203
|
+
|
|
204
|
+
<!-- ******************************************************************* -->
|
|
205
|
+
<service name="dmVoDZWebService">
|
|
206
|
+
<port name="dmVoDZPortType" binding="tns:dmVoDZBinding">
|
|
207
|
+
<soap12:address location="https://ws2.mojedatovaschranka.cz/DS/vodz"/>
|
|
208
|
+
</port>
|
|
209
|
+
</service>
|
|
210
|
+
|
|
211
|
+
</definitions>
|
|
212
|
+
|
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
2
|
+
<!-- *********************************************************************
|
|
3
|
+
|
|
4
|
+
verze: 3.04
|
|
5
|
+
klasifikace: Veřejný dokument
|
|
6
|
+
|
|
7
|
+
WSDL pro služby
|
|
8
|
+
1. Ověření neporušení datové zprávy - VerifyMessage
|
|
9
|
+
2. Stažení obálky přijaté zprávy v čitelné podobě - MessageEnvelopeDownload
|
|
10
|
+
3. Označení přijaté zprávy jako Přečtené - MarkMessageAsDownloaded
|
|
11
|
+
4. Oznámení o dodání, doručení, nedoručení datové zprávy (Dodejka, Doručenka, Nedoručenka) - GetDeliveryInfo
|
|
12
|
+
5. Podepsané oznámení o dodání, doručení, nedoručení datové zprávy (Dodejka, Doručenka, Nedoručenka) - GetSignedDeliveryInfo
|
|
13
|
+
6. Stažení seznamů odeslaných datových zpráv - GetListOfSentMessages
|
|
14
|
+
7. Stažení seznamů přijatých datových zpráv - GetListOfReceivedMessages
|
|
15
|
+
8. Doručení komerční datové zprávy - ConfirmDelivery - odstraněno ve verzi 2.33
|
|
16
|
+
9. Seznam změněných zpráv - GetMessageStateChanges
|
|
17
|
+
10. Informace o odesílateli zprávy - GetMessageAuthor a GetMessageAuthor2
|
|
18
|
+
11. Informace o způsobu posílání PDZ - PDZInfo
|
|
19
|
+
12. Smazání dlouhodbě uložené DZ (trezorové) - EraseMessage
|
|
20
|
+
13. Požadavek na stažení seznamu smazaných zpráv - GetListOfErasedMessages
|
|
21
|
+
14. Vyzvednutí asynchronního požadavku - PickUpAsyncResponse
|
|
22
|
+
15. Registrace externích notifikací - RegisterForNotifications
|
|
23
|
+
16. Stažení záznamů pro notifikace - GetListForNotifications
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
Změny:
|
|
27
|
+
4.2.2009 verze 0.1
|
|
28
|
+
20.3.2009 verze 1.0 - formální úpravy vyhovující WS-I Basic Profile
|
|
29
|
+
8.4.2009 verze 1.2 - změna názvů WSDL, rozložení operací mezi WSDL
|
|
30
|
+
3.6.2009 verze 2.0 - novela
|
|
31
|
+
1.11.2009 verze 2.6 - přidána WS ConfirmDelivery
|
|
32
|
+
11.10.2010 verze 2.10 - změna URL v důsledku přechodu na Basic autentizaci
|
|
33
|
+
- přidání WS GetMessageStateChanges
|
|
34
|
+
10.11.2010 verze 2.11 - přidání WS GetMessageAuthor
|
|
35
|
+
25.8.2010 verze 2.14 - novela zákona
|
|
36
|
+
12.4.2012 verze 2.16 - přidání WS EraseMessage
|
|
37
|
+
14.10.2015 verze 2.22 - sjednocení verzí
|
|
38
|
+
21.11.2017 verze 2.27 - sjednocení verzí
|
|
39
|
+
04.09.2018 verze 2.31 - sjednocení verzí
|
|
40
|
+
29.07.2021 verze 2.33 - přidány WS GetListOfErasedMessages a PickUpAsyncResponse a RegisterForNotifications a GetListForNotifications
|
|
41
|
+
24.11.2021 verze 3.0 (pro VT) - upravené XSD definice
|
|
42
|
+
25.04.2022 verze 2.35 - přidána WS GetMessageAuthor2
|
|
43
|
+
25.04.2021 verze 3.01 (pro VT) - přidána WS GetMessageAuthor2
|
|
44
|
+
31.10.2022 verze 3.03 - sjednocení verzí
|
|
45
|
+
20.10.2023 verze 3.04 - sjednocení verzí
|
|
46
|
+
|
|
47
|
+
************************************************************************ -->
|
|
48
|
+
|
|
49
|
+
<definitions name="ISDS_dmMessCreate" targetNamespace="http://isds.czechpoint.cz/v20"
|
|
50
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
|
51
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
52
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
|
53
|
+
xmlns:tns="http://isds.czechpoint.cz/v20">
|
|
54
|
+
|
|
55
|
+
<types>
|
|
56
|
+
<xs:schema targetNamespace="http://isds.czechpoint.cz/v20">
|
|
57
|
+
<xs:include schemaLocation="dmBaseTypes.xsd" />
|
|
58
|
+
</xs:schema>
|
|
59
|
+
</types>
|
|
60
|
+
|
|
61
|
+
<!-- ******************************************************************* -->
|
|
62
|
+
|
|
63
|
+
<message name="MessageVerifyRequest">
|
|
64
|
+
<part name="parameter" element="tns:VerifyMessage" />
|
|
65
|
+
</message>
|
|
66
|
+
<message name="MessageVerifyResponse">
|
|
67
|
+
<part name="parameter" element="tns:VerifyMessageResponse" />
|
|
68
|
+
</message>
|
|
69
|
+
|
|
70
|
+
<message name="MessageEnvelopeDownloadRequest">
|
|
71
|
+
<part name="parameter" element="tns:MessageEnvelopeDownload" />
|
|
72
|
+
</message>
|
|
73
|
+
<message name="MessageEnvelopeDownloadResponse">
|
|
74
|
+
<part name="parameter" element="tns:MessageEnvelopeDownloadResponse" />
|
|
75
|
+
</message>
|
|
76
|
+
|
|
77
|
+
<message name="MarkMessageAsDownloadedRequest">
|
|
78
|
+
<part name="parameter" element="tns:MarkMessageAsDownloaded" />
|
|
79
|
+
</message>
|
|
80
|
+
<message name="MarkMessageAsDownloadedResponse">
|
|
81
|
+
<part name="parameter" element="tns:MarkMessageAsDownloadedResponse" />
|
|
82
|
+
</message>
|
|
83
|
+
|
|
84
|
+
<message name="DeliveryMessageRequest">
|
|
85
|
+
<part name="parameter" element="tns:GetDeliveryInfo" />
|
|
86
|
+
</message>
|
|
87
|
+
<message name="DeliveryMessageResponse">
|
|
88
|
+
<part name="parameter" element="tns:GetDeliveryInfoResponse" />
|
|
89
|
+
</message>
|
|
90
|
+
|
|
91
|
+
<message name="SignedDeliveryMessageRequest">
|
|
92
|
+
<part name="parameter" element="tns:GetSignedDeliveryInfo" />
|
|
93
|
+
</message>
|
|
94
|
+
<message name="SignedDeliveryMessageResponse">
|
|
95
|
+
<part name="parameter" element="tns:GetSignedDeliveryInfoResponse" />
|
|
96
|
+
</message>
|
|
97
|
+
|
|
98
|
+
<message name="ListOfSentMessagesRequest">
|
|
99
|
+
<part name="parameter" element="tns:GetListOfSentMessages" />
|
|
100
|
+
</message>
|
|
101
|
+
<message name="ListOfSentMessagesResponse">
|
|
102
|
+
<part name="parameter" element="tns:GetListOfSentMessagesResponse" />
|
|
103
|
+
</message>
|
|
104
|
+
|
|
105
|
+
<message name="ListOfReceivedMessagesRequest">
|
|
106
|
+
<part name="parameter" element="tns:GetListOfReceivedMessages" />
|
|
107
|
+
</message>
|
|
108
|
+
<message name="ListOfReceivedMessagesResponse">
|
|
109
|
+
<part name="parameter" element="tns:GetListOfReceivedMessagesResponse" />
|
|
110
|
+
</message>
|
|
111
|
+
|
|
112
|
+
<message name="GetMessageStateChangesRequest">
|
|
113
|
+
<part name="parameter" element="tns:GetMessageStateChanges" />
|
|
114
|
+
</message>
|
|
115
|
+
<message name="GetMessageStateChangesResponse">
|
|
116
|
+
<part name="parameter" element="tns:GetMessageStateChangesResponse" />
|
|
117
|
+
</message>
|
|
118
|
+
|
|
119
|
+
<message name="GetMessageAuthorRequest">
|
|
120
|
+
<part name="parameter" element="tns:GetMessageAuthor" />
|
|
121
|
+
</message>
|
|
122
|
+
<message name="GetMessageAuthorResponse">
|
|
123
|
+
<part name="parameter" element="tns:GetMessageAuthorResponse" />
|
|
124
|
+
</message>
|
|
125
|
+
|
|
126
|
+
<message name="GetMessageAuthor2Request">
|
|
127
|
+
<part name="parameter" element="tns:GetMessageAuthor2" />
|
|
128
|
+
</message>
|
|
129
|
+
<message name="GetMessageAuthor2Response">
|
|
130
|
+
<part name="parameter" element="tns:GetMessageAuthor2Response" />
|
|
131
|
+
</message>
|
|
132
|
+
|
|
133
|
+
<message name="EraseMessageRequest">
|
|
134
|
+
<part name="parameter" element="tns:EraseMessage" />
|
|
135
|
+
</message>
|
|
136
|
+
<message name="EraseMessageResponse">
|
|
137
|
+
<part name="parameter" element="tns:EraseMessageResponse" />
|
|
138
|
+
</message>
|
|
139
|
+
|
|
140
|
+
<message name="GetListOfErasedMessagesRequest">
|
|
141
|
+
<part name="parameter" element="tns:GetListOfErasedMessages" />
|
|
142
|
+
</message>
|
|
143
|
+
<message name="GetListOfErasedMessagesResponse">
|
|
144
|
+
<part name="parameter" element="tns:GetListOfErasedMessagesResponse" />
|
|
145
|
+
</message>
|
|
146
|
+
|
|
147
|
+
<message name="PickUpAsyncResponseRequest">
|
|
148
|
+
<part name="parameter" element="tns:PickUpAsyncResponse" />
|
|
149
|
+
</message>
|
|
150
|
+
<message name="PickUpAsyncResponseResponse">
|
|
151
|
+
<part name="parameter" element="tns:PickUpAsyncResponseResponse" />
|
|
152
|
+
</message>
|
|
153
|
+
|
|
154
|
+
<message name="GetListForNotificationsRequest">
|
|
155
|
+
<part name="parameter" element="tns:GetListForNotifications" />
|
|
156
|
+
</message>
|
|
157
|
+
<message name="GetListForNotificationsResponse">
|
|
158
|
+
<part name="parameter" element="tns:GetListForNotificationsResponse" />
|
|
159
|
+
</message>
|
|
160
|
+
|
|
161
|
+
<message name="RegisterForNotificationsRequest">
|
|
162
|
+
<part name="parameter" element="tns:RegisterForNotifications" />
|
|
163
|
+
</message>
|
|
164
|
+
<message name="RegisterForNotificationsResponse">
|
|
165
|
+
<part name="parameter" element="tns:RegisterForNotificationsResponse" />
|
|
166
|
+
</message>
|
|
167
|
+
|
|
168
|
+
<!-- ******************************************************************* -->
|
|
169
|
+
<portType name="dmInfoPortType">
|
|
170
|
+
|
|
171
|
+
<operation name="VerifyMessage">
|
|
172
|
+
<input message="tns:MessageVerifyRequest"/>
|
|
173
|
+
<output message="tns:MessageVerifyResponse"/>
|
|
174
|
+
</operation>
|
|
175
|
+
|
|
176
|
+
<operation name="MessageEnvelopeDownload">
|
|
177
|
+
<input message="tns:MessageEnvelopeDownloadRequest"/>
|
|
178
|
+
<output message="tns:MessageEnvelopeDownloadResponse"/>
|
|
179
|
+
</operation>
|
|
180
|
+
|
|
181
|
+
<operation name="MarkMessageAsDownloaded">
|
|
182
|
+
<input message="tns:MarkMessageAsDownloadedRequest"/>
|
|
183
|
+
<output message="tns:MarkMessageAsDownloadedResponse"/>
|
|
184
|
+
</operation>
|
|
185
|
+
|
|
186
|
+
<operation name="GetDeliveryInfo">
|
|
187
|
+
<input message="tns:DeliveryMessageRequest"/>
|
|
188
|
+
<output message="tns:DeliveryMessageResponse"/>
|
|
189
|
+
</operation>
|
|
190
|
+
|
|
191
|
+
<operation name="GetSignedDeliveryInfo">
|
|
192
|
+
<input message="tns:SignedDeliveryMessageRequest"/>
|
|
193
|
+
<output message="tns:SignedDeliveryMessageResponse"/>
|
|
194
|
+
</operation>
|
|
195
|
+
|
|
196
|
+
<operation name="GetListOfSentMessages">
|
|
197
|
+
<input message="tns:ListOfSentMessagesRequest"/>
|
|
198
|
+
<output message="tns:ListOfSentMessagesResponse"/>
|
|
199
|
+
</operation>
|
|
200
|
+
|
|
201
|
+
<operation name="GetListOfReceivedMessages">
|
|
202
|
+
<input message="tns:ListOfReceivedMessagesRequest"/>
|
|
203
|
+
<output message="tns:ListOfReceivedMessagesResponse"/>
|
|
204
|
+
</operation>
|
|
205
|
+
|
|
206
|
+
<operation name="GetMessageStateChanges">
|
|
207
|
+
<input message="tns:GetMessageStateChangesRequest"/>
|
|
208
|
+
<output message="tns:GetMessageStateChangesResponse"/>
|
|
209
|
+
</operation>
|
|
210
|
+
|
|
211
|
+
<operation name="GetMessageAuthor">
|
|
212
|
+
<input message="tns:GetMessageAuthorRequest"/>
|
|
213
|
+
<output message="tns:GetMessageAuthorResponse"/>
|
|
214
|
+
</operation>
|
|
215
|
+
|
|
216
|
+
<operation name="GetMessageAuthor2">
|
|
217
|
+
<input message="tns:GetMessageAuthor2Request"/>
|
|
218
|
+
<output message="tns:GetMessageAuthor2Response"/>
|
|
219
|
+
</operation>
|
|
220
|
+
|
|
221
|
+
<operation name="EraseMessage">
|
|
222
|
+
<input message="tns:EraseMessageRequest"/>
|
|
223
|
+
<output message="tns:EraseMessageResponse"/>
|
|
224
|
+
</operation>
|
|
225
|
+
|
|
226
|
+
<operation name="GetListOfErasedMessages">
|
|
227
|
+
<input message="tns:GetListOfErasedMessagesRequest"/>
|
|
228
|
+
<output message="tns:GetListOfErasedMessagesResponse"/>
|
|
229
|
+
</operation>
|
|
230
|
+
|
|
231
|
+
<operation name="PickUpAsyncResponse">
|
|
232
|
+
<input message="tns:PickUpAsyncResponseRequest"/>
|
|
233
|
+
<output message="tns:PickUpAsyncResponseResponse"/>
|
|
234
|
+
</operation>
|
|
235
|
+
|
|
236
|
+
<operation name="GetListForNotifications">
|
|
237
|
+
<input message="tns:GetListForNotificationsRequest"/>
|
|
238
|
+
<output message="tns:GetListForNotificationsResponse"/>
|
|
239
|
+
</operation>
|
|
240
|
+
|
|
241
|
+
<operation name="RegisterForNotifications">
|
|
242
|
+
<input message="tns:RegisterForNotificationsRequest"/>
|
|
243
|
+
<output message="tns:RegisterForNotificationsResponse"/>
|
|
244
|
+
</operation>
|
|
245
|
+
|
|
246
|
+
</portType>
|
|
247
|
+
|
|
248
|
+
<!-- ******************************************************************* -->
|
|
249
|
+
<binding name="dmInfoBinding" type="tns:dmInfoPortType">
|
|
250
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
|
251
|
+
|
|
252
|
+
<operation name="VerifyMessage">
|
|
253
|
+
<soap:operation soapAction="" />
|
|
254
|
+
<input>
|
|
255
|
+
<soap:body use="literal" />
|
|
256
|
+
</input>
|
|
257
|
+
<output>
|
|
258
|
+
<soap:body use="literal" />
|
|
259
|
+
</output>
|
|
260
|
+
</operation>
|
|
261
|
+
|
|
262
|
+
<operation name="MessageEnvelopeDownload">
|
|
263
|
+
<soap:operation soapAction="" />
|
|
264
|
+
<input>
|
|
265
|
+
<soap:body use="literal" />
|
|
266
|
+
</input>
|
|
267
|
+
<output>
|
|
268
|
+
<soap:body use="literal" />
|
|
269
|
+
</output>
|
|
270
|
+
</operation>
|
|
271
|
+
|
|
272
|
+
<operation name="MarkMessageAsDownloaded">
|
|
273
|
+
<soap:operation soapAction="" />
|
|
274
|
+
<input>
|
|
275
|
+
<soap:body use="literal" />
|
|
276
|
+
</input>
|
|
277
|
+
<output>
|
|
278
|
+
<soap:body use="literal" />
|
|
279
|
+
</output>
|
|
280
|
+
</operation>
|
|
281
|
+
|
|
282
|
+
<operation name="GetDeliveryInfo">
|
|
283
|
+
<soap:operation soapAction="" />
|
|
284
|
+
<input>
|
|
285
|
+
<soap:body use="literal" />
|
|
286
|
+
</input>
|
|
287
|
+
<output>
|
|
288
|
+
<soap:body use="literal" />
|
|
289
|
+
</output>
|
|
290
|
+
</operation>
|
|
291
|
+
|
|
292
|
+
<operation name="GetSignedDeliveryInfo">
|
|
293
|
+
<soap:operation soapAction=""/>
|
|
294
|
+
<input>
|
|
295
|
+
<soap:body use="literal" />
|
|
296
|
+
</input>
|
|
297
|
+
<output>
|
|
298
|
+
<soap:body use="literal" />
|
|
299
|
+
</output>
|
|
300
|
+
</operation>
|
|
301
|
+
|
|
302
|
+
<operation name="GetListOfSentMessages">
|
|
303
|
+
<soap:operation soapAction="" />
|
|
304
|
+
<input>
|
|
305
|
+
<soap:body use="literal" />
|
|
306
|
+
</input>
|
|
307
|
+
<output>
|
|
308
|
+
<soap:body use="literal" />
|
|
309
|
+
</output>
|
|
310
|
+
</operation>
|
|
311
|
+
|
|
312
|
+
<operation name="GetListOfReceivedMessages">
|
|
313
|
+
<soap:operation soapAction="" />
|
|
314
|
+
<input>
|
|
315
|
+
<soap:body use="literal" />
|
|
316
|
+
</input>
|
|
317
|
+
<output>
|
|
318
|
+
<soap:body use="literal" />
|
|
319
|
+
</output>
|
|
320
|
+
</operation>
|
|
321
|
+
|
|
322
|
+
<operation name="GetMessageStateChanges">
|
|
323
|
+
<soap:operation soapAction="" />
|
|
324
|
+
<input>
|
|
325
|
+
<soap:body use="literal" />
|
|
326
|
+
</input>
|
|
327
|
+
<output>
|
|
328
|
+
<soap:body use="literal" />
|
|
329
|
+
</output>
|
|
330
|
+
</operation>
|
|
331
|
+
|
|
332
|
+
<operation name="GetMessageAuthor">
|
|
333
|
+
<soap:operation soapAction="" />
|
|
334
|
+
<input>
|
|
335
|
+
<soap:body use="literal" />
|
|
336
|
+
</input>
|
|
337
|
+
<output>
|
|
338
|
+
<soap:body use="literal" />
|
|
339
|
+
</output>
|
|
340
|
+
</operation>
|
|
341
|
+
|
|
342
|
+
<operation name="GetMessageAuthor2">
|
|
343
|
+
<soap:operation soapAction="" />
|
|
344
|
+
<input>
|
|
345
|
+
<soap:body use="literal" />
|
|
346
|
+
</input>
|
|
347
|
+
<output>
|
|
348
|
+
<soap:body use="literal" />
|
|
349
|
+
</output>
|
|
350
|
+
</operation>
|
|
351
|
+
|
|
352
|
+
<operation name="EraseMessage">
|
|
353
|
+
<soap:operation soapAction="" />
|
|
354
|
+
<input>
|
|
355
|
+
<soap:body use="literal" />
|
|
356
|
+
</input>
|
|
357
|
+
<output>
|
|
358
|
+
<soap:body use="literal" />
|
|
359
|
+
</output>
|
|
360
|
+
</operation>
|
|
361
|
+
|
|
362
|
+
<operation name="GetListOfErasedMessages">
|
|
363
|
+
<soap:operation soapAction="" />
|
|
364
|
+
<input>
|
|
365
|
+
<soap:body use="literal" />
|
|
366
|
+
</input>
|
|
367
|
+
<output>
|
|
368
|
+
<soap:body use="literal" />
|
|
369
|
+
</output>
|
|
370
|
+
</operation>
|
|
371
|
+
|
|
372
|
+
<operation name="PickUpAsyncResponse">
|
|
373
|
+
<soap:operation soapAction="" />
|
|
374
|
+
<input>
|
|
375
|
+
<soap:body use="literal" />
|
|
376
|
+
</input>
|
|
377
|
+
<output>
|
|
378
|
+
<soap:body use="literal" />
|
|
379
|
+
</output>
|
|
380
|
+
</operation>
|
|
381
|
+
|
|
382
|
+
<operation name="GetListForNotifications">
|
|
383
|
+
<soap:operation soapAction="" />
|
|
384
|
+
<input>
|
|
385
|
+
<soap:body use="literal" />
|
|
386
|
+
</input>
|
|
387
|
+
<output>
|
|
388
|
+
<soap:body use="literal" />
|
|
389
|
+
</output>
|
|
390
|
+
</operation>
|
|
391
|
+
|
|
392
|
+
<operation name="RegisterForNotifications">
|
|
393
|
+
<soap:operation soapAction="" />
|
|
394
|
+
<input>
|
|
395
|
+
<soap:body use="literal" />
|
|
396
|
+
</input>
|
|
397
|
+
<output>
|
|
398
|
+
<soap:body use="literal" />
|
|
399
|
+
</output>
|
|
400
|
+
</operation>
|
|
401
|
+
|
|
402
|
+
</binding>
|
|
403
|
+
|
|
404
|
+
<!-- ******************************************************************* -->
|
|
405
|
+
<service name="dmInfoWebService">
|
|
406
|
+
<port name="dmInfoPortType" binding="tns:dmInfoBinding">
|
|
407
|
+
<soap:address location="https://ws1.mojedatovaschranka.cz/DS/dx"/>
|
|
408
|
+
</port>
|
|
409
|
+
</service>
|
|
410
|
+
|
|
411
|
+
</definitions>
|
|
412
|
+
|