sepafm 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +35 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/LICENSE +8 -0
- data/README.md +236 -0
- data/Rakefile +10 -0
- data/lib/danske_get_bank_certificate_test.rb +15 -0
- data/lib/sepa/application_request.rb +182 -0
- data/lib/sepa/application_response.rb +123 -0
- data/lib/sepa/client.rb +79 -0
- data/lib/sepa/danske_testing/keys/danske_encryption.crt +24 -0
- data/lib/sepa/filedescriptor.rb +7 -0
- data/lib/sepa/filetypeservice.rb +6 -0
- data/lib/sepa/nordea_testing/keys/CSR.csr +0 -0
- data/lib/sepa/nordea_testing/keys/nordea.crt +27 -0
- data/lib/sepa/nordea_testing/keys/nordea.key +19 -0
- data/lib/sepa/nordea_testing/response/content_053.xml +998 -0
- data/lib/sepa/nordea_testing/response/content_054.xml +1 -0
- data/lib/sepa/nordea_testing/response/download_file_response.xml +14 -0
- data/lib/sepa/nordea_testing/response/download_filelist_response.xml +14 -0
- data/lib/sepa/nordea_testing/response/get_user_info_response.xml +14 -0
- data/lib/sepa/nordea_testing/response/upload_file_response.xml +14 -0
- data/lib/sepa/response.rb +177 -0
- data/lib/sepa/sender_verifier.rb +15 -0
- data/lib/sepa/signature.rb +7 -0
- data/lib/sepa/soap_builder.rb +395 -0
- data/lib/sepa/soap_danske.rb +47 -0
- data/lib/sepa/soap_nordea.rb +68 -0
- data/lib/sepa/userfiletype.rb +16 -0
- data/lib/sepa/version.rb +3 -0
- data/lib/sepa/wsdl/wsdl_danske.xml +234 -0
- data/lib/sepa/wsdl/wsdl_danske_cert.xml +280 -0
- data/lib/sepa/wsdl/wsdl_nordea.xml +234 -0
- data/lib/sepa/wsdl/wsdl_nordea_cert.xml +187 -0
- data/lib/sepa/xml_parser.rb +291 -0
- data/lib/sepa/xml_schemas/application_request.xsd +135 -0
- data/lib/sepa/xml_schemas/application_response.xsd +311 -0
- data/lib/sepa/xml_schemas/cert_application_request.xsd +107 -0
- data/lib/sepa/xml_schemas/danske_pki.xsd +334 -0
- data/lib/sepa/xml_schemas/oasis-200401-wss-wssecurity-secext-1.0.xsd +195 -0
- data/lib/sepa/xml_schemas/oasis-200401-wss-wssecurity-utility-1.0.xsd +108 -0
- data/lib/sepa/xml_schemas/soap.xsd +126 -0
- data/lib/sepa/xml_schemas/wsdl.xml +310 -0
- data/lib/sepa/xml_schemas/xml.xsd +287 -0
- data/lib/sepa/xml_schemas/xmldsig-core-schema.xsd +318 -0
- data/lib/sepa/xml_templates/application_request/create_certificate.xml +10 -0
- data/lib/sepa/xml_templates/application_request/danske_get_bank_certificate.xml +10 -0
- data/lib/sepa/xml_templates/application_request/download_file.xml +32 -0
- data/lib/sepa/xml_templates/application_request/download_file_list.xml +29 -0
- data/lib/sepa/xml_templates/application_request/get_certificate.xml +10 -0
- data/lib/sepa/xml_templates/application_request/get_user_info.xml +26 -0
- data/lib/sepa/xml_templates/application_request/upload_file.xml +29 -0
- data/lib/sepa/xml_templates/soap/create_certificate.xml +15 -0
- data/lib/sepa/xml_templates/soap/danske_get_bank_certificate.xml +14 -0
- data/lib/sepa/xml_templates/soap/download_file.xml +16 -0
- data/lib/sepa/xml_templates/soap/download_file_list.xml +16 -0
- data/lib/sepa/xml_templates/soap/get_certificate.xml +13 -0
- data/lib/sepa/xml_templates/soap/get_user_info.xml +16 -0
- data/lib/sepa/xml_templates/soap/header.xml +37 -0
- data/lib/sepa/xml_templates/soap/upload_file.xml +16 -0
- data/lib/sepa.rb +21 -0
- data/lib/sepa_client_testing_mika.rb +32 -0
- data/lib/sepa_client_testing_tiere.rb +80 -0
- data/sepa.gemspec +29 -0
- data/test/sepa/application_request_test.rb +423 -0
- data/test/sepa/application_response_test.rb +238 -0
- data/test/sepa/cert_application_request_test.rb +99 -0
- data/test/sepa/client_test.rb +425 -0
- data/test/sepa/danske_test_keys/danskeroot.pem +25 -0
- data/test/sepa/danske_test_keys/encryption_pkcs.csr +0 -0
- data/test/sepa/danske_test_keys/signing_key.pem +27 -0
- data/test/sepa/danske_test_keys/signing_pkcs.csr +0 -0
- data/test/sepa/nordea_cert_request_soap_builder_test.rb +112 -0
- data/test/sepa/nordea_generic_soap_builder_test.rb +427 -0
- data/test/sepa/nordea_test_keys/nordea.crt +27 -0
- data/test/sepa/nordea_test_keys/nordea.key +19 -0
- data/test/sepa/nordea_test_keys/root_cert.cer +0 -0
- data/test/sepa/nordea_test_keys/testcert.csr +0 -0
- data/test/sepa/response_test.rb +269 -0
- data/test/sepa/sepa_test.rb +20 -0
- data/test/sepa/test_files/invalid.wsdl +1 -0
- data/test/sepa/test_files/test_responses/df.xml +20 -0
- data/test/sepa/test_files/test_responses/dfl.xml +20 -0
- data/test/sepa/test_files/test_responses/gui.xml +20 -0
- data/test/sepa/test_files/test_responses/uf.xml +20 -0
- data/test/sepa/user_file_type_test.rb +21 -0
- data/test/sepa/xml_parser_test.rb +73 -0
- data/test/test_helper.rb +9 -0
- metadata +256 -0
@@ -0,0 +1,287 @@
|
|
1
|
+
<?xml version='1.0'?>
|
2
|
+
<?xml-stylesheet href="../2008/09/xsd.xsl" type="text/xsl"?>
|
3
|
+
<xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace"
|
4
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns ="http://www.w3.org/1999/xhtml"
|
6
|
+
xml:lang="en">
|
7
|
+
|
8
|
+
<xs:annotation>
|
9
|
+
<xs:documentation>
|
10
|
+
<div>
|
11
|
+
<h1>About the XML namespace</h1>
|
12
|
+
|
13
|
+
<div class="bodytext">
|
14
|
+
<p>
|
15
|
+
This schema document describes the XML namespace, in a form
|
16
|
+
suitable for import by other schema documents.
|
17
|
+
</p>
|
18
|
+
<p>
|
19
|
+
See <a href="http://www.w3.org/XML/1998/namespace.html">
|
20
|
+
http://www.w3.org/XML/1998/namespace.html</a> and
|
21
|
+
<a href="http://www.w3.org/TR/REC-xml">
|
22
|
+
http://www.w3.org/TR/REC-xml</a> for information
|
23
|
+
about this namespace.
|
24
|
+
</p>
|
25
|
+
<p>
|
26
|
+
Note that local names in this namespace are intended to be
|
27
|
+
defined only by the World Wide Web Consortium or its subgroups.
|
28
|
+
The names currently defined in this namespace are listed below.
|
29
|
+
They should not be used with conflicting semantics by any Working
|
30
|
+
Group, specification, or document instance.
|
31
|
+
</p>
|
32
|
+
<p>
|
33
|
+
See further below in this document for more information about <a
|
34
|
+
href="#usage">how to refer to this schema document from your own
|
35
|
+
XSD schema documents</a> and about <a href="#nsversioning">the
|
36
|
+
namespace-versioning policy governing this schema document</a>.
|
37
|
+
</p>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
</xs:documentation>
|
41
|
+
</xs:annotation>
|
42
|
+
|
43
|
+
<xs:attribute name="lang">
|
44
|
+
<xs:annotation>
|
45
|
+
<xs:documentation>
|
46
|
+
<div>
|
47
|
+
|
48
|
+
<h3>lang (as an attribute name)</h3>
|
49
|
+
<p>
|
50
|
+
denotes an attribute whose value
|
51
|
+
is a language code for the natural language of the content of
|
52
|
+
any element; its value is inherited. This name is reserved
|
53
|
+
by virtue of its definition in the XML specification.</p>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
<div>
|
57
|
+
<h4>Notes</h4>
|
58
|
+
<p>
|
59
|
+
Attempting to install the relevant ISO 2- and 3-letter
|
60
|
+
codes as the enumerated possible values is probably never
|
61
|
+
going to be a realistic possibility.
|
62
|
+
</p>
|
63
|
+
<p>
|
64
|
+
See BCP 47 at <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt">
|
65
|
+
http://www.rfc-editor.org/rfc/bcp/bcp47.txt</a>
|
66
|
+
and the IANA language subtag registry at
|
67
|
+
<a href="http://www.iana.org/assignments/language-subtag-registry">
|
68
|
+
http://www.iana.org/assignments/language-subtag-registry</a>
|
69
|
+
for further information.
|
70
|
+
</p>
|
71
|
+
<p>
|
72
|
+
The union allows for the 'un-declaration' of xml:lang with
|
73
|
+
the empty string.
|
74
|
+
</p>
|
75
|
+
</div>
|
76
|
+
</xs:documentation>
|
77
|
+
</xs:annotation>
|
78
|
+
<xs:simpleType>
|
79
|
+
<xs:union memberTypes="xs:language">
|
80
|
+
<xs:simpleType>
|
81
|
+
<xs:restriction base="xs:string">
|
82
|
+
<xs:enumeration value=""/>
|
83
|
+
</xs:restriction>
|
84
|
+
</xs:simpleType>
|
85
|
+
</xs:union>
|
86
|
+
</xs:simpleType>
|
87
|
+
</xs:attribute>
|
88
|
+
|
89
|
+
<xs:attribute name="space">
|
90
|
+
<xs:annotation>
|
91
|
+
<xs:documentation>
|
92
|
+
<div>
|
93
|
+
|
94
|
+
<h3>space (as an attribute name)</h3>
|
95
|
+
<p>
|
96
|
+
denotes an attribute whose
|
97
|
+
value is a keyword indicating what whitespace processing
|
98
|
+
discipline is intended for the content of the element; its
|
99
|
+
value is inherited. This name is reserved by virtue of its
|
100
|
+
definition in the XML specification.</p>
|
101
|
+
|
102
|
+
</div>
|
103
|
+
</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
<xs:simpleType>
|
106
|
+
<xs:restriction base="xs:NCName">
|
107
|
+
<xs:enumeration value="default"/>
|
108
|
+
<xs:enumeration value="preserve"/>
|
109
|
+
</xs:restriction>
|
110
|
+
</xs:simpleType>
|
111
|
+
</xs:attribute>
|
112
|
+
|
113
|
+
<xs:attribute name="base" type="xs:anyURI"> <xs:annotation>
|
114
|
+
<xs:documentation>
|
115
|
+
<div>
|
116
|
+
|
117
|
+
<h3>base (as an attribute name)</h3>
|
118
|
+
<p>
|
119
|
+
denotes an attribute whose value
|
120
|
+
provides a URI to be used as the base for interpreting any
|
121
|
+
relative URIs in the scope of the element on which it
|
122
|
+
appears; its value is inherited. This name is reserved
|
123
|
+
by virtue of its definition in the XML Base specification.</p>
|
124
|
+
|
125
|
+
<p>
|
126
|
+
See <a
|
127
|
+
href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a>
|
128
|
+
for information about this attribute.
|
129
|
+
</p>
|
130
|
+
</div>
|
131
|
+
</xs:documentation>
|
132
|
+
</xs:annotation>
|
133
|
+
</xs:attribute>
|
134
|
+
|
135
|
+
<xs:attribute name="id" type="xs:ID">
|
136
|
+
<xs:annotation>
|
137
|
+
<xs:documentation>
|
138
|
+
<div>
|
139
|
+
|
140
|
+
<h3>id (as an attribute name)</h3>
|
141
|
+
<p>
|
142
|
+
denotes an attribute whose value
|
143
|
+
should be interpreted as if declared to be of type ID.
|
144
|
+
This name is reserved by virtue of its definition in the
|
145
|
+
xml:id specification.</p>
|
146
|
+
|
147
|
+
<p>
|
148
|
+
See <a
|
149
|
+
href="http://www.w3.org/TR/xml-id/">http://www.w3.org/TR/xml-id/</a>
|
150
|
+
for information about this attribute.
|
151
|
+
</p>
|
152
|
+
</div>
|
153
|
+
</xs:documentation>
|
154
|
+
</xs:annotation>
|
155
|
+
</xs:attribute>
|
156
|
+
|
157
|
+
<xs:attributeGroup name="specialAttrs">
|
158
|
+
<xs:attribute ref="xml:base"/>
|
159
|
+
<xs:attribute ref="xml:lang"/>
|
160
|
+
<xs:attribute ref="xml:space"/>
|
161
|
+
<xs:attribute ref="xml:id"/>
|
162
|
+
</xs:attributeGroup>
|
163
|
+
|
164
|
+
<xs:annotation>
|
165
|
+
<xs:documentation>
|
166
|
+
<div>
|
167
|
+
|
168
|
+
<h3>Father (in any context at all)</h3>
|
169
|
+
|
170
|
+
<div class="bodytext">
|
171
|
+
<p>
|
172
|
+
denotes Jon Bosak, the chair of
|
173
|
+
the original XML Working Group. This name is reserved by
|
174
|
+
the following decision of the W3C XML Plenary and
|
175
|
+
XML Coordination groups:
|
176
|
+
</p>
|
177
|
+
<blockquote>
|
178
|
+
<p>
|
179
|
+
In appreciation for his vision, leadership and
|
180
|
+
dedication the W3C XML Plenary on this 10th day of
|
181
|
+
February, 2000, reserves for Jon Bosak in perpetuity
|
182
|
+
the XML name "xml:Father".
|
183
|
+
</p>
|
184
|
+
</blockquote>
|
185
|
+
</div>
|
186
|
+
</div>
|
187
|
+
</xs:documentation>
|
188
|
+
</xs:annotation>
|
189
|
+
|
190
|
+
<xs:annotation>
|
191
|
+
<xs:documentation>
|
192
|
+
<div xml:id="usage" id="usage">
|
193
|
+
<h2><a name="usage">About this schema document</a></h2>
|
194
|
+
|
195
|
+
<div class="bodytext">
|
196
|
+
<p>
|
197
|
+
This schema defines attributes and an attribute group suitable
|
198
|
+
for use by schemas wishing to allow <code>xml:base</code>,
|
199
|
+
<code>xml:lang</code>, <code>xml:space</code> or
|
200
|
+
<code>xml:id</code> attributes on elements they define.
|
201
|
+
</p>
|
202
|
+
<p>
|
203
|
+
To enable this, such a schema must import this schema for
|
204
|
+
the XML namespace, e.g. as follows:
|
205
|
+
</p>
|
206
|
+
<pre>
|
207
|
+
<schema . . .>
|
208
|
+
. . .
|
209
|
+
<import namespace="http://www.w3.org/XML/1998/namespace"
|
210
|
+
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
|
211
|
+
</pre>
|
212
|
+
<p>
|
213
|
+
or
|
214
|
+
</p>
|
215
|
+
<pre>
|
216
|
+
<import namespace="http://www.w3.org/XML/1998/namespace"
|
217
|
+
schemaLocation="http://www.w3.org/2009/01/xml.xsd"/>
|
218
|
+
</pre>
|
219
|
+
<p>
|
220
|
+
Subsequently, qualified reference to any of the attributes or the
|
221
|
+
group defined below will have the desired effect, e.g.
|
222
|
+
</p>
|
223
|
+
<pre>
|
224
|
+
<type . . .>
|
225
|
+
. . .
|
226
|
+
<attributeGroup ref="xml:specialAttrs"/>
|
227
|
+
</pre>
|
228
|
+
<p>
|
229
|
+
will define a type which will schema-validate an instance element
|
230
|
+
with any of those attributes.
|
231
|
+
</p>
|
232
|
+
</div>
|
233
|
+
</div>
|
234
|
+
</xs:documentation>
|
235
|
+
</xs:annotation>
|
236
|
+
|
237
|
+
<xs:annotation>
|
238
|
+
<xs:documentation>
|
239
|
+
<div id="nsversioning" xml:id="nsversioning">
|
240
|
+
<h2><a name="nsversioning">Versioning policy for this schema document</a></h2>
|
241
|
+
<div class="bodytext">
|
242
|
+
<p>
|
243
|
+
In keeping with the XML Schema WG's standard versioning
|
244
|
+
policy, this schema document will persist at
|
245
|
+
<a href="http://www.w3.org/2009/01/xml.xsd">
|
246
|
+
http://www.w3.org/2009/01/xml.xsd</a>.
|
247
|
+
</p>
|
248
|
+
<p>
|
249
|
+
At the date of issue it can also be found at
|
250
|
+
<a href="http://www.w3.org/2001/xml.xsd">
|
251
|
+
http://www.w3.org/2001/xml.xsd</a>.
|
252
|
+
</p>
|
253
|
+
<p>
|
254
|
+
The schema document at that URI may however change in the future,
|
255
|
+
in order to remain compatible with the latest version of XML
|
256
|
+
Schema itself, or with the XML namespace itself. In other words,
|
257
|
+
if the XML Schema or XML namespaces change, the version of this
|
258
|
+
document at <a href="http://www.w3.org/2001/xml.xsd">
|
259
|
+
http://www.w3.org/2001/xml.xsd
|
260
|
+
</a>
|
261
|
+
will change accordingly; the version at
|
262
|
+
<a href="http://www.w3.org/2009/01/xml.xsd">
|
263
|
+
http://www.w3.org/2009/01/xml.xsd
|
264
|
+
</a>
|
265
|
+
will not change.
|
266
|
+
</p>
|
267
|
+
<p>
|
268
|
+
Previous dated (and unchanging) versions of this schema
|
269
|
+
document are at:
|
270
|
+
</p>
|
271
|
+
<ul>
|
272
|
+
<li><a href="http://www.w3.org/2009/01/xml.xsd">
|
273
|
+
http://www.w3.org/2009/01/xml.xsd</a></li>
|
274
|
+
<li><a href="http://www.w3.org/2007/08/xml.xsd">
|
275
|
+
http://www.w3.org/2007/08/xml.xsd</a></li>
|
276
|
+
<li><a href="http://www.w3.org/2004/10/xml.xsd">
|
277
|
+
http://www.w3.org/2004/10/xml.xsd</a></li>
|
278
|
+
<li><a href="http://www.w3.org/2001/03/xml.xsd">
|
279
|
+
http://www.w3.org/2001/03/xml.xsd</a></li>
|
280
|
+
</ul>
|
281
|
+
</div>
|
282
|
+
</div>
|
283
|
+
</xs:documentation>
|
284
|
+
</xs:annotation>
|
285
|
+
|
286
|
+
</xs:schema>
|
287
|
+
|
@@ -0,0 +1,318 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE schema
|
3
|
+
PUBLIC "-//W3C//DTD XMLSchema 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd"
|
4
|
+
[
|
5
|
+
<!ATTLIST schema
|
6
|
+
xmlns:ds CDATA #FIXED "http://www.w3.org/2000/09/xmldsig#">
|
7
|
+
<!ENTITY dsig 'http://www.w3.org/2000/09/xmldsig#'>
|
8
|
+
<!ENTITY % p ''>
|
9
|
+
<!ENTITY % s ''>
|
10
|
+
]>
|
11
|
+
|
12
|
+
<!-- Schema for XML Signatures
|
13
|
+
http://www.w3.org/2000/09/xmldsig#
|
14
|
+
$Revision: 1.1 $ on $Date: 2002/02/08 20:32:26 $ by $Author: reagle $
|
15
|
+
|
16
|
+
Copyright 2001 The Internet Society and W3C (Massachusetts Institute
|
17
|
+
of Technology, Institut National de Recherche en Informatique et en
|
18
|
+
Automatique, Keio University). All Rights Reserved.
|
19
|
+
http://www.w3.org/Consortium/Legal/
|
20
|
+
|
21
|
+
This document is governed by the W3C Software License [1] as described
|
22
|
+
in the FAQ [2].
|
23
|
+
|
24
|
+
[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
|
25
|
+
[2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
|
26
|
+
-->
|
27
|
+
|
28
|
+
|
29
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
30
|
+
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
|
31
|
+
targetNamespace="http://www.w3.org/2000/09/xmldsig#"
|
32
|
+
version="0.1" elementFormDefault="qualified">
|
33
|
+
|
34
|
+
<!-- Basic Types Defined for Signatures -->
|
35
|
+
|
36
|
+
<simpleType name="CryptoBinary">
|
37
|
+
<restriction base="base64Binary">
|
38
|
+
</restriction>
|
39
|
+
</simpleType>
|
40
|
+
|
41
|
+
<!-- Start Signature -->
|
42
|
+
|
43
|
+
<element name="Signature" type="ds:SignatureType"/>
|
44
|
+
<complexType name="SignatureType">
|
45
|
+
<sequence>
|
46
|
+
<element ref="ds:SignedInfo"/>
|
47
|
+
<element ref="ds:SignatureValue"/>
|
48
|
+
<element ref="ds:KeyInfo" minOccurs="0"/>
|
49
|
+
<element ref="ds:Object" minOccurs="0" maxOccurs="unbounded"/>
|
50
|
+
</sequence>
|
51
|
+
<attribute name="Id" type="ID" use="optional"/>
|
52
|
+
</complexType>
|
53
|
+
|
54
|
+
<element name="SignatureValue" type="ds:SignatureValueType"/>
|
55
|
+
<complexType name="SignatureValueType">
|
56
|
+
<simpleContent>
|
57
|
+
<extension base="base64Binary">
|
58
|
+
<attribute name="Id" type="ID" use="optional"/>
|
59
|
+
</extension>
|
60
|
+
</simpleContent>
|
61
|
+
</complexType>
|
62
|
+
|
63
|
+
<!-- Start SignedInfo -->
|
64
|
+
|
65
|
+
<element name="SignedInfo" type="ds:SignedInfoType"/>
|
66
|
+
<complexType name="SignedInfoType">
|
67
|
+
<sequence>
|
68
|
+
<element ref="ds:CanonicalizationMethod"/>
|
69
|
+
<element ref="ds:SignatureMethod"/>
|
70
|
+
<element ref="ds:Reference" maxOccurs="unbounded"/>
|
71
|
+
</sequence>
|
72
|
+
<attribute name="Id" type="ID" use="optional"/>
|
73
|
+
</complexType>
|
74
|
+
|
75
|
+
<element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/>
|
76
|
+
<complexType name="CanonicalizationMethodType" mixed="true">
|
77
|
+
<sequence>
|
78
|
+
<any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
|
79
|
+
<!-- (0,unbounded) elements from (1,1) namespace -->
|
80
|
+
</sequence>
|
81
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
82
|
+
</complexType>
|
83
|
+
|
84
|
+
<element name="SignatureMethod" type="ds:SignatureMethodType"/>
|
85
|
+
<complexType name="SignatureMethodType" mixed="true">
|
86
|
+
<sequence>
|
87
|
+
<element name="HMACOutputLength" minOccurs="0" type="ds:HMACOutputLengthType"/>
|
88
|
+
<any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
|
89
|
+
<!-- (0,unbounded) elements from (1,1) external namespace -->
|
90
|
+
</sequence>
|
91
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
92
|
+
</complexType>
|
93
|
+
|
94
|
+
<!-- Start Reference -->
|
95
|
+
|
96
|
+
<element name="Reference" type="ds:ReferenceType"/>
|
97
|
+
<complexType name="ReferenceType">
|
98
|
+
<sequence>
|
99
|
+
<element ref="ds:Transforms" minOccurs="0"/>
|
100
|
+
<element ref="ds:DigestMethod"/>
|
101
|
+
<element ref="ds:DigestValue"/>
|
102
|
+
</sequence>
|
103
|
+
<attribute name="Id" type="ID" use="optional"/>
|
104
|
+
<attribute name="URI" type="anyURI" use="optional"/>
|
105
|
+
<attribute name="Type" type="anyURI" use="optional"/>
|
106
|
+
</complexType>
|
107
|
+
|
108
|
+
<element name="Transforms" type="ds:TransformsType"/>
|
109
|
+
<complexType name="TransformsType">
|
110
|
+
<sequence>
|
111
|
+
<element ref="ds:Transform" maxOccurs="unbounded"/>
|
112
|
+
</sequence>
|
113
|
+
</complexType>
|
114
|
+
|
115
|
+
<element name="Transform" type="ds:TransformType"/>
|
116
|
+
<complexType name="TransformType" mixed="true">
|
117
|
+
<choice minOccurs="0" maxOccurs="unbounded">
|
118
|
+
<any namespace="##other" processContents="lax"/>
|
119
|
+
<!-- (1,1) elements from (0,unbounded) namespaces -->
|
120
|
+
<element name="XPath" type="string"/>
|
121
|
+
</choice>
|
122
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
123
|
+
</complexType>
|
124
|
+
|
125
|
+
<!-- End Reference -->
|
126
|
+
|
127
|
+
<element name="DigestMethod" type="ds:DigestMethodType"/>
|
128
|
+
<complexType name="DigestMethodType" mixed="true">
|
129
|
+
<sequence>
|
130
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
131
|
+
</sequence>
|
132
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
133
|
+
</complexType>
|
134
|
+
|
135
|
+
<element name="DigestValue" type="ds:DigestValueType"/>
|
136
|
+
<simpleType name="DigestValueType">
|
137
|
+
<restriction base="base64Binary"/>
|
138
|
+
</simpleType>
|
139
|
+
|
140
|
+
<!-- End SignedInfo -->
|
141
|
+
|
142
|
+
<!-- Start KeyInfo -->
|
143
|
+
|
144
|
+
<element name="KeyInfo" type="ds:KeyInfoType"/>
|
145
|
+
<complexType name="KeyInfoType" mixed="true">
|
146
|
+
<choice maxOccurs="unbounded">
|
147
|
+
<element ref="ds:KeyName"/>
|
148
|
+
<element ref="ds:KeyValue"/>
|
149
|
+
<element ref="ds:RetrievalMethod"/>
|
150
|
+
<element ref="ds:X509Data"/>
|
151
|
+
<element ref="ds:PGPData"/>
|
152
|
+
<element ref="ds:SPKIData"/>
|
153
|
+
<element ref="ds:MgmtData"/>
|
154
|
+
<any processContents="lax" namespace="##other"/>
|
155
|
+
<!-- (1,1) elements from (0,unbounded) namespaces -->
|
156
|
+
</choice>
|
157
|
+
<attribute name="Id" type="ID" use="optional"/>
|
158
|
+
</complexType>
|
159
|
+
|
160
|
+
<element name="KeyName" type="string"/>
|
161
|
+
<element name="MgmtData" type="string"/>
|
162
|
+
|
163
|
+
<element name="KeyValue" type="ds:KeyValueType"/>
|
164
|
+
<complexType name="KeyValueType" mixed="true">
|
165
|
+
<choice>
|
166
|
+
<element ref="ds:DSAKeyValue"/>
|
167
|
+
<element ref="ds:RSAKeyValue"/>
|
168
|
+
<any namespace="##other" processContents="lax"/>
|
169
|
+
</choice>
|
170
|
+
</complexType>
|
171
|
+
|
172
|
+
<element name="RetrievalMethod" type="ds:RetrievalMethodType"/>
|
173
|
+
<complexType name="RetrievalMethodType">
|
174
|
+
<sequence>
|
175
|
+
<element ref="ds:Transforms" minOccurs="0"/>
|
176
|
+
</sequence>
|
177
|
+
<attribute name="URI" type="anyURI"/>
|
178
|
+
<attribute name="Type" type="anyURI" use="optional"/>
|
179
|
+
</complexType>
|
180
|
+
|
181
|
+
<!-- Start X509Data -->
|
182
|
+
|
183
|
+
<element name="X509Data" type="ds:X509DataType"/>
|
184
|
+
<complexType name="X509DataType">
|
185
|
+
<sequence maxOccurs="unbounded">
|
186
|
+
<choice>
|
187
|
+
<element name="X509IssuerSerial" type="ds:X509IssuerSerialType"/>
|
188
|
+
<element name="X509SKI" type="base64Binary"/>
|
189
|
+
<element name="X509SubjectName" type="string"/>
|
190
|
+
<element name="X509Certificate" type="base64Binary"/>
|
191
|
+
<element name="X509CRL" type="base64Binary"/>
|
192
|
+
<any namespace="##other" processContents="lax"/>
|
193
|
+
</choice>
|
194
|
+
</sequence>
|
195
|
+
</complexType>
|
196
|
+
|
197
|
+
<complexType name="X509IssuerSerialType">
|
198
|
+
<sequence>
|
199
|
+
<element name="X509IssuerName" type="string"/>
|
200
|
+
<element name="X509SerialNumber" type="integer"/>
|
201
|
+
</sequence>
|
202
|
+
</complexType>
|
203
|
+
|
204
|
+
<!-- End X509Data -->
|
205
|
+
|
206
|
+
<!-- Begin PGPData -->
|
207
|
+
|
208
|
+
<element name="PGPData" type="ds:PGPDataType"/>
|
209
|
+
<complexType name="PGPDataType">
|
210
|
+
<choice>
|
211
|
+
<sequence>
|
212
|
+
<element name="PGPKeyID" type="base64Binary"/>
|
213
|
+
<element name="PGPKeyPacket" type="base64Binary" minOccurs="0"/>
|
214
|
+
<any namespace="##other" processContents="lax" minOccurs="0"
|
215
|
+
maxOccurs="unbounded"/>
|
216
|
+
</sequence>
|
217
|
+
<sequence>
|
218
|
+
<element name="PGPKeyPacket" type="base64Binary"/>
|
219
|
+
<any namespace="##other" processContents="lax" minOccurs="0"
|
220
|
+
maxOccurs="unbounded"/>
|
221
|
+
</sequence>
|
222
|
+
</choice>
|
223
|
+
</complexType>
|
224
|
+
|
225
|
+
<!-- End PGPData -->
|
226
|
+
|
227
|
+
<!-- Begin SPKIData -->
|
228
|
+
|
229
|
+
<element name="SPKIData" type="ds:SPKIDataType"/>
|
230
|
+
<complexType name="SPKIDataType">
|
231
|
+
<sequence maxOccurs="unbounded">
|
232
|
+
<element name="SPKISexp" type="base64Binary"/>
|
233
|
+
<any namespace="##other" processContents="lax" minOccurs="0"/>
|
234
|
+
</sequence>
|
235
|
+
</complexType>
|
236
|
+
|
237
|
+
<!-- End SPKIData -->
|
238
|
+
|
239
|
+
<!-- End KeyInfo -->
|
240
|
+
|
241
|
+
<!-- Start Object (Manifest, SignatureProperty) -->
|
242
|
+
|
243
|
+
<element name="Object" type="ds:ObjectType"/>
|
244
|
+
<complexType name="ObjectType" mixed="true">
|
245
|
+
<sequence minOccurs="0" maxOccurs="unbounded">
|
246
|
+
<any namespace="##any" processContents="lax"/>
|
247
|
+
</sequence>
|
248
|
+
<attribute name="Id" type="ID" use="optional"/>
|
249
|
+
<attribute name="MimeType" type="string" use="optional"/> <!-- add a grep facet -->
|
250
|
+
<attribute name="Encoding" type="anyURI" use="optional"/>
|
251
|
+
</complexType>
|
252
|
+
|
253
|
+
<element name="Manifest" type="ds:ManifestType"/>
|
254
|
+
<complexType name="ManifestType">
|
255
|
+
<sequence>
|
256
|
+
<element ref="ds:Reference" maxOccurs="unbounded"/>
|
257
|
+
</sequence>
|
258
|
+
<attribute name="Id" type="ID" use="optional"/>
|
259
|
+
</complexType>
|
260
|
+
|
261
|
+
<element name="SignatureProperties" type="ds:SignaturePropertiesType"/>
|
262
|
+
<complexType name="SignaturePropertiesType">
|
263
|
+
<sequence>
|
264
|
+
<element ref="ds:SignatureProperty" maxOccurs="unbounded"/>
|
265
|
+
</sequence>
|
266
|
+
<attribute name="Id" type="ID" use="optional"/>
|
267
|
+
</complexType>
|
268
|
+
|
269
|
+
<element name="SignatureProperty" type="ds:SignaturePropertyType"/>
|
270
|
+
<complexType name="SignaturePropertyType" mixed="true">
|
271
|
+
<choice maxOccurs="unbounded">
|
272
|
+
<any namespace="##other" processContents="lax"/>
|
273
|
+
<!-- (1,1) elements from (1,unbounded) namespaces -->
|
274
|
+
</choice>
|
275
|
+
<attribute name="Target" type="anyURI" use="required"/>
|
276
|
+
<attribute name="Id" type="ID" use="optional"/>
|
277
|
+
</complexType>
|
278
|
+
|
279
|
+
<!-- End Object (Manifest, SignatureProperty) -->
|
280
|
+
|
281
|
+
<!-- Start Algorithm Parameters -->
|
282
|
+
|
283
|
+
<simpleType name="HMACOutputLengthType">
|
284
|
+
<restriction base="integer"/>
|
285
|
+
</simpleType>
|
286
|
+
|
287
|
+
<!-- Start KeyValue Element-types -->
|
288
|
+
|
289
|
+
<element name="DSAKeyValue" type="ds:DSAKeyValueType"/>
|
290
|
+
<complexType name="DSAKeyValueType">
|
291
|
+
<sequence>
|
292
|
+
<sequence minOccurs="0">
|
293
|
+
<element name="P" type="ds:CryptoBinary"/>
|
294
|
+
<element name="Q" type="ds:CryptoBinary"/>
|
295
|
+
</sequence>
|
296
|
+
<element name="G" type="ds:CryptoBinary" minOccurs="0"/>
|
297
|
+
<element name="Y" type="ds:CryptoBinary"/>
|
298
|
+
<element name="J" type="ds:CryptoBinary" minOccurs="0"/>
|
299
|
+
<sequence minOccurs="0">
|
300
|
+
<element name="Seed" type="ds:CryptoBinary"/>
|
301
|
+
<element name="PgenCounter" type="ds:CryptoBinary"/>
|
302
|
+
</sequence>
|
303
|
+
</sequence>
|
304
|
+
</complexType>
|
305
|
+
|
306
|
+
<element name="RSAKeyValue" type="ds:RSAKeyValueType"/>
|
307
|
+
<complexType name="RSAKeyValueType">
|
308
|
+
<sequence>
|
309
|
+
<element name="Modulus" type="ds:CryptoBinary"/>
|
310
|
+
<element name="Exponent" type="ds:CryptoBinary"/>
|
311
|
+
</sequence>
|
312
|
+
</complexType>
|
313
|
+
|
314
|
+
<!-- End KeyValue Element-types -->
|
315
|
+
|
316
|
+
<!-- End Signature -->
|
317
|
+
|
318
|
+
</schema>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<tns:CreateCertificateRequest xmlns:xe="http://www.w3.org/2001/04/xmlenc#" xmlns:xd="http://www.w3.org/2000/09/xmldsig#" xmlns:tns="http://danskebank.dk/PKI/PKIFactoryService/elements" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pkif="http://danskebank.dk/PKI/PKIFactoryService">
|
2
|
+
<tns:CustomerId></tns:CustomerId>
|
3
|
+
<tns:KeyGeneratorType></tns:KeyGeneratorType>
|
4
|
+
<tns:EncryptionCertPKCS10></tns:EncryptionCertPKCS10>
|
5
|
+
<tns:SigningCertPKCS10></tns:SigningCertPKCS10>
|
6
|
+
<tns:Timestamp></tns:Timestamp>
|
7
|
+
<tns:RequestId></tns:RequestId>
|
8
|
+
<tns:Environment></tns:Environment>
|
9
|
+
<tns:PIN></tns:PIN>
|
10
|
+
</tns:CreateCertificateRequest>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pkif="http://danskebank.dk/PKI/PKIFactoryService" xmlns:elem="http://danskebank.dk/PKI/PKIFactoryService/elements">
|
2
|
+
<soapenv:Header/>
|
3
|
+
<soapenv:Body>
|
4
|
+
<elem:GetBankCertificateRequest>
|
5
|
+
<elem:BankRootCertificateSerialNo></elem:BankRootCertificateSerialNo>
|
6
|
+
<elem:Timestamp></elem:Timestamp>
|
7
|
+
<elem:RequestId></elem:RequestId>
|
8
|
+
</elem:GetBankCertificateRequest>
|
9
|
+
</soapenv:Body>
|
10
|
+
</soapenv:Envelope>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<ApplicationRequest xmlns="http://bxd.fi/xmldata/">
|
2
|
+
<CustomerId></CustomerId>
|
3
|
+
<Command></Command>
|
4
|
+
<Timestamp></Timestamp>
|
5
|
+
<Status></Status>
|
6
|
+
<Environment></Environment>
|
7
|
+
<FileReferences>
|
8
|
+
<FileReference></FileReference>
|
9
|
+
</FileReferences>
|
10
|
+
<TargetId></TargetId>
|
11
|
+
<SoftwareId></SoftwareId>
|
12
|
+
<FileType></FileType>
|
13
|
+
<dsig:Signature xmlns:dsig="http://www.w3.org/2000/09/xmldsig#">
|
14
|
+
<dsig:SignedInfo>
|
15
|
+
<dsig:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments"/>
|
16
|
+
<dsig:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
|
17
|
+
<dsig:Reference URI="">
|
18
|
+
<dsig:Transforms>
|
19
|
+
<dsig:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
|
20
|
+
</dsig:Transforms>
|
21
|
+
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
|
22
|
+
<dsig:DigestValue></dsig:DigestValue>
|
23
|
+
</dsig:Reference>
|
24
|
+
</dsig:SignedInfo>
|
25
|
+
<dsig:SignatureValue></dsig:SignatureValue>
|
26
|
+
<dsig:KeyInfo>
|
27
|
+
<dsig:X509Data>
|
28
|
+
<dsig:X509Certificate></dsig:X509Certificate>
|
29
|
+
</dsig:X509Data>
|
30
|
+
</dsig:KeyInfo>
|
31
|
+
</dsig:Signature>
|
32
|
+
</ApplicationRequest>
|