epics 1.5.1 → 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,69 +1,62 @@
1
1
  class Epics::INI < Epics::GenericRequest
2
-
3
2
  def root
4
3
  "ebicsUnsecuredRequest"
5
4
  end
6
5
 
7
6
  def header
8
- {
9
- :@authenticate => true,
10
- static: {
11
- "HostID" => host_id,
12
- "PartnerID" => partner_id,
13
- "UserID" => user_id,
14
- "Product" => {
15
- :@Language => "de",
16
- :content! => "EPICS - a ruby ebics kernel"
17
- },
18
- "OrderDetails" => {
19
- "OrderType" => "INI",
20
- "OrderAttribute" => "DZNNN"
21
- },
22
- "SecurityMedium" => "0000"
23
- },
24
- "mutable" => ""
25
- }
7
+ Nokogiri::XML::Builder.new do |xml|
8
+ xml.header(authenticate: true) {
9
+ xml.static {
10
+ xml.HostID host_id
11
+ xml.PartnerID partner_id
12
+ xml.UserID user_id
13
+ xml.Product("EPICS - a ruby ebics kernel", 'Language' => 'de')
14
+ xml.OrderDetails {
15
+ xml.OrderType 'INI'
16
+ xml.OrderAttribute 'DZNNN'
17
+ }
18
+ xml.SecurityMedium '0000'
19
+ }
20
+ xml.mutable ''
21
+ }
22
+ end.doc.root
26
23
  end
27
24
 
28
25
  def body
29
- {
30
- "DataTransfer" => {
31
- "OrderData" => Base64.strict_encode64(Zlib::Deflate.deflate(key_signature))
26
+ Nokogiri::XML::Builder.new do |xml|
27
+ xml.body{
28
+ xml.DataTransfer {
29
+ xml.OrderData Base64.strict_encode64(Zlib::Deflate.deflate(key_signature))
30
+ }
32
31
  }
33
- }
32
+ end.doc.root
34
33
  end
35
34
 
36
35
  def key_signature
37
- "<?xml version='1.0' encoding='utf-8'?>\n"+
38
- Gyoku.xml("SignaturePubKeyOrderData" => {
39
- :"@xmlns:ds" => "http://www.w3.org/2000/09/xmldsig#",
40
- :"@xmlns" => "http://www.ebics.org/S001",
41
- "SignaturePubKeyInfo" => {
42
- "PubKeyValue" => {
43
- "ds:RSAKeyValue" => {
44
- "ds:Modulus" => Base64.strict_encode64([client.a.n].pack("H*")),
45
- "ds:Exponent" => Base64.strict_encode64(client.a.key.e.to_s(2))
46
- },
47
- "TimeStamp" => timestamp
48
- },
49
- "SignatureVersion" => "A006"
50
- },
51
- "PartnerID" => partner_id,
52
- "UserID" => user_id
53
- })
36
+ Nokogiri::XML::Builder.new do |xml|
37
+ xml.SignaturePubKeyOrderData('xmlns:ds' => 'http://www.w3.org/2000/09/xmldsig#', 'xmlns' => 'http://www.ebics.org/S001') {
38
+ xml.SignaturePubKeyInfo {
39
+ xml.PubKeyValue {
40
+ xml.send('ds:RSAKeyValue') {
41
+ xml.send('ds:Modulus', Base64.strict_encode64([client.a.n].pack("H*")))
42
+ xml.send('ds:Exponent', Base64.strict_encode64(client.a.key.e.to_s(2)))
43
+ }
44
+ xml.TimeStamp timestamp
45
+ }
46
+ xml.SignatureVersion 'A006'
47
+ }
48
+ xml.PartnerID partner_id
49
+ xml.UserID user_id
50
+ }
51
+ end.to_xml(save_with: Nokogiri::XML::Node::SaveOptions::AS_XML, encoding: 'utf-8')
54
52
  end
55
53
 
56
54
  def to_xml
57
- Nokogiri::XML.parse(Gyoku.xml( {
58
- root => {
59
- :"@xmlns:ds" => "http://www.w3.org/2000/09/xmldsig#",
60
- :@xmlns => "urn:org:ebics:H004",
61
- :@Version => "H004",
62
- :@Revision => "1",
63
- :header => header,
64
- "body" => body
55
+ Nokogiri::XML::Builder.new do |xml|
56
+ xml.send(root, 'xmlns:ds' => 'http://www.w3.org/2000/09/xmldsig#', 'xmlns' => 'urn:org:ebics:H004', 'Version' => 'H004', 'Revision' => '1') {
57
+ xml.parent.add_child(header)
58
+ xml.parent.add_child(body)
65
59
  }
66
- }), nil, "utf-8").to_xml(save_with: Nokogiri::XML::Node::SaveOptions::AS_XML)
60
+ end.to_xml(save_with: Nokogiri::XML::Node::SaveOptions::AS_XML, encoding: 'utf-8')
67
61
  end
68
-
69
62
  end
@@ -1,52 +1,46 @@
1
1
  class Epics::PTK < Epics::GenericRequest
2
2
  attr_accessor :from, :to
3
3
 
4
- def initialize(client, from, to)
4
+ def initialize(client, from = nil, to = nil)
5
5
  super(client)
6
6
  self.from = from
7
7
  self.to = to
8
8
  end
9
9
 
10
10
  def header
11
- {
12
- :@authenticate => true,
13
- static: {
14
- "HostID" => host_id,
15
- "Nonce" => nonce,
16
- "Timestamp" => timestamp,
17
- "PartnerID" => partner_id,
18
- "UserID" => user_id,
19
- "Product" => {
20
- :@Language => "de",
21
- :content! => "EPICS - a ruby ebics kernel"
22
- },
23
- "OrderDetails" => {
24
- "OrderType" => "PTK",
25
- "OrderAttribute" => "DZHNN",
26
- "StandardOrderParams" => {
27
- "DateRange" => {
28
- "Start" => from,
29
- "End" => to
30
- }
11
+ Nokogiri::XML::Builder.new do |xml|
12
+ xml.header(authenticate: true) {
13
+ xml.static {
14
+ xml.HostID host_id
15
+ xml.Nonce nonce
16
+ xml.Timestamp timestamp
17
+ xml.PartnerID partner_id
18
+ xml.UserID user_id
19
+ xml.Product("EPICS - a ruby ebics kernel", 'Language' => 'de')
20
+ xml.OrderDetails {
21
+ xml.OrderType 'PTK'
22
+ xml.OrderAttribute 'DZHNN'
23
+ if !!from && !!to
24
+ xml.StandardOrderParams {
25
+ xml.DateRange {
26
+ xml.Start from
27
+ xml.End to
28
+ }
29
+ }
30
+ else
31
+ xml.StandardOrderParams
32
+ end
31
33
  }
32
- },
33
- "BankPubKeyDigests" => {
34
- "Authentication" => {
35
- :@Version => "X002",
36
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
37
- :content! => client.bank_x.public_digest
38
- },
39
- "Encryption" => {
40
- :@Version => "E002",
41
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
42
- :content! => client.bank_e.public_digest
34
+ xml.BankPubKeyDigests {
35
+ xml.Authentication(client.bank_x.public_digest, Version: 'X002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256")
36
+ xml.Encryption(client.bank_e.public_digest, Version: 'E002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256" )
43
37
  }
44
- },
45
- "SecurityMedium" => "0000"
46
- },
47
- "mutable" => {
48
- "TransactionPhase" => "Initialisation"
38
+ xml.SecurityMedium '0000'
39
+ }
40
+ xml.mutable {
41
+ xml.TransactionPhase 'Initialisation'
42
+ }
49
43
  }
50
- }
44
+ end.doc.root
51
45
  end
52
46
  end
@@ -7,49 +7,40 @@ class Epics::STA < Epics::GenericRequest
7
7
  self.to = to
8
8
  end
9
9
 
10
- def date_range
11
- if !!from && !!to
12
- { "DateRange" => { "Start" => from, "End" => to } }
13
- else
14
- { :content! => '' }
15
- end
16
- end
17
-
18
10
  def header
19
- {
20
- :@authenticate => true,
21
- static: {
22
- "HostID" => host_id,
23
- "Nonce" => nonce,
24
- "Timestamp" => timestamp,
25
- "PartnerID" => partner_id,
26
- "UserID" => user_id,
27
- "Product" => {
28
- :@Language => "de",
29
- :content! => "EPICS - a ruby ebics kernel"
30
- },
31
- "OrderDetails" => {
32
- "OrderType" => "STA",
33
- "OrderAttribute" => "DZHNN",
34
- "StandardOrderParams" => date_range
35
- },
36
- "BankPubKeyDigests" => {
37
- "Authentication" => {
38
- :@Version => "X002",
39
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
40
- :content! => client.bank_x.public_digest
41
- },
42
- "Encryption" => {
43
- :@Version => "E002",
44
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
45
- :content! => client.bank_e.public_digest
11
+ Nokogiri::XML::Builder.new do |xml|
12
+ xml.header(authenticate: true) {
13
+ xml.static {
14
+ xml.HostID host_id
15
+ xml.Nonce nonce
16
+ xml.Timestamp timestamp
17
+ xml.PartnerID partner_id
18
+ xml.UserID user_id
19
+ xml.Product("EPICS - a ruby ebics kernel", 'Language' => 'de')
20
+ xml.OrderDetails {
21
+ xml.OrderType 'STA'
22
+ xml.OrderAttribute 'DZHNN'
23
+ if !!from && !!to
24
+ xml.StandardOrderParams {
25
+ xml.DateRange {
26
+ xml.Start from
27
+ xml.End to
28
+ }
29
+ }
30
+ else
31
+ xml.StandardOrderParams
32
+ end
33
+ }
34
+ xml.BankPubKeyDigests {
35
+ xml.Authentication(client.bank_x.public_digest, Version: 'X002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256")
36
+ xml.Encryption(client.bank_e.public_digest, Version: 'E002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256" )
46
37
  }
47
- },
48
- "SecurityMedium" => "0000"
49
- },
50
- "mutable" => {
51
- "TransactionPhase" => "Initialisation"
38
+ xml.SecurityMedium '0000'
39
+ }
40
+ xml.mutable {
41
+ xml.TransactionPhase 'Initialisation'
42
+ }
52
43
  }
53
- }
44
+ end.doc.root
54
45
  end
55
46
  end
@@ -1,3 +1,3 @@
1
1
  module Epics
2
- VERSION = "1.5.1"
2
+ VERSION = "1.5.2"
3
3
  end
@@ -7,49 +7,40 @@ class Epics::VMK < Epics::GenericRequest
7
7
  self.to = to
8
8
  end
9
9
 
10
- def date_range
11
- if !!from && !!to
12
- { "DateRange" => { "Start" => from, "End" => to } }
13
- else
14
- { :content! => '' }
15
- end
16
- end
17
-
18
10
  def header
19
- {
20
- :@authenticate => true,
21
- static: {
22
- "HostID" => host_id,
23
- "Nonce" => nonce,
24
- "Timestamp" => timestamp,
25
- "PartnerID" => partner_id,
26
- "UserID" => user_id,
27
- "Product" => {
28
- :@Language => "de",
29
- :content! => "EPICS - a ruby ebics kernel"
30
- },
31
- "OrderDetails" => {
32
- "OrderType" => "VMK",
33
- "OrderAttribute" => "DZHNN",
34
- "StandardOrderParams" => date_range
35
- },
36
- "BankPubKeyDigests" => {
37
- "Authentication" => {
38
- :@Version => "X002",
39
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
40
- :content! => client.bank_x.public_digest
41
- },
42
- "Encryption" => {
43
- :@Version => "E002",
44
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
45
- :content! => client.bank_e.public_digest
11
+ Nokogiri::XML::Builder.new do |xml|
12
+ xml.header(authenticate: true) {
13
+ xml.static {
14
+ xml.HostID host_id
15
+ xml.Nonce nonce
16
+ xml.Timestamp timestamp
17
+ xml.PartnerID partner_id
18
+ xml.UserID user_id
19
+ xml.Product("EPICS - a ruby ebics kernel", 'Language' => 'de')
20
+ xml.OrderDetails {
21
+ xml.OrderType 'VMK'
22
+ xml.OrderAttribute 'DZHNN'
23
+ if !!from && !!to
24
+ xml.StandardOrderParams {
25
+ xml.DateRange {
26
+ xml.Start from
27
+ xml.End to
28
+ }
29
+ }
30
+ else
31
+ xml.StandardOrderParams
32
+ end
33
+ }
34
+ xml.BankPubKeyDigests {
35
+ xml.Authentication(client.bank_x.public_digest, Version: 'X002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256")
36
+ xml.Encryption(client.bank_e.public_digest, Version: 'E002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256" )
46
37
  }
47
- },
48
- "SecurityMedium" => "0000"
49
- },
50
- "mutable" => {
51
- "TransactionPhase" => "Initialisation"
38
+ xml.SecurityMedium '0000'
39
+ }
40
+ xml.mutable {
41
+ xml.TransactionPhase 'Initialisation'
42
+ }
52
43
  }
53
- }
44
+ end.doc.root
54
45
  end
55
46
  end
@@ -82,6 +82,16 @@ RSpec.describe Epics::Client do
82
82
  end
83
83
  end
84
84
 
85
+ describe '#order_types' do
86
+ before do
87
+ allow(subject).to receive(:download).and_return( File.read(File.join(File.dirname(__FILE__), 'fixtures', 'xml', 'htd_order_data.xml')))
88
+ end
89
+
90
+ it 'extracts the accessible order types of a subscriber' do
91
+ expect(subject.order_types).to match_array(%w(PTK HPD HTD STA HVD HPB HAA HVT HVU HVZ INI SPR PUB HIA HCA HSA HVE HVS CCS CCT CD1 CDD))
92
+ end
93
+ end
94
+
85
95
  describe '#HPB' do
86
96
  let(:e_key) do
87
97
  Epics::Key.new(OpenSSL::PKey::RSA.new(File.read(File.join(File.dirname(__FILE__), 'fixtures', 'bank_e.pem'))))
@@ -168,6 +178,10 @@ RSpec.describe Epics::Client do
168
178
  it 'sets @name' do
169
179
  expect { subject.HTD }.to change { subject.instance_variable_get("@name") }
170
180
  end
181
+
182
+ it 'sets @order_types' do
183
+ expect { subject.HTD }.to change { subject.instance_variable_get("@order_types") }
184
+ end
171
185
  end
172
186
 
173
187
  describe '#C53/C52/C54 types with zipped data' do
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ebicsRequest xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns="urn:org:ebics:H004" Version="H004" Revision="1"><header authenticate="true"><static><HostID>SIZBN001</HostID><Nonce>95149241ead8ae7dbb72cabe966bf0e3</Nonce><Timestamp>2017-10-17T19:56:33Z</Timestamp><PartnerID>EBICS</PartnerID><UserID>EBIX</UserID><Product Language="de">EPICS - a ruby ebics kernel</Product><OrderDetails><OrderType>HAA</OrderType><OrderAttribute>DZHNN</OrderAttribute><StandardOrderParams/></OrderDetails><BankPubKeyDigests><Authentication Version="X002" Algorithm="http://www.w3.org/2001/04/xmlenc#sha256">dFAYe281vj9NB7w+VoWIdfHnjY9hNbZLbHsDOu76QAE=</Authentication><Encryption Version="E002" Algorithm="http://www.w3.org/2001/04/xmlenc#sha256">dFAYe281vj9NB7w+VoWIdfHnjY9hNbZLbHsDOu76QAE=</Encryption></BankPubKeyDigests><SecurityMedium>0000</SecurityMedium></static><mutable><TransactionPhase>Initialisation</TransactionPhase></mutable></header><AuthSignature><ds:SignedInfo><ds:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/><ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><ds:Reference URI="#xpointer(//*[@authenticate='true'])"><ds:Transforms><ds:Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/></ds:Transforms><ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/><ds:DigestValue/></ds:Reference></ds:SignedInfo><ds:SignatureValue/></AuthSignature><body/></ebicsRequest>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ebicsRequest xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns="urn:org:ebics:H004" Version="H004" Revision="1">
3
+ <header authenticate="true">
4
+ <static>
5
+ <HostID>SIZBN001</HostID>
6
+ <TransactionID/>
7
+ </static>
8
+ <mutable>
9
+ <TransactionPhase>Receipt</TransactionPhase>
10
+ </mutable>
11
+ </header>
12
+ <AuthSignature>
13
+ <ds:SignedInfo>
14
+ <ds:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
15
+ <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/>
16
+ <ds:Reference URI="#xpointer(//*[@authenticate='true'])">
17
+ <ds:Transforms>
18
+ <ds:Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
19
+ </ds:Transforms>
20
+ <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/>
21
+ <ds:DigestValue/>
22
+ </ds:Reference>
23
+ </ds:SignedInfo>
24
+ <ds:SignatureValue/>
25
+ </AuthSignature>
26
+ <body>
27
+ <TransferReceipt authenticate="true">
28
+ <ReceiptCode>0</ReceiptCode>
29
+ </TransferReceipt>
30
+ </body>
31
+ </ebicsRequest>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ebicsUnsecuredRequest Revision="1" Version="H004" xmlns="urn:org:ebics:H004" xmlns:ds="http://www.w3.org/2000/09/xmldsig#"><header authenticate="true"><static><HostID>SIZBN001</HostID><PartnerID>EBICS</PartnerID><UserID>EBIX</UserID><Product Language="de">EPICS - a ruby ebics kernel</Product><OrderDetails><OrderType>HIA</OrderType><OrderAttribute>DZNNN</OrderAttribute></OrderDetails><SecurityMedium>0000</SecurityMedium></static><mutable/></header><body><DataTransfer><OrderData>eJytlEuTokgUhffzKyqcpTGVgECpYdmBgAgib5Fyx0tAIIFMHuKvb6dquqdqplcTs8t7zs2MG/d8katvt7J46mOEswq+TshnYvIUw7CKMpi8Trr28sd88m3922onc1bcdDFudRTFSPBb/+lxE+JHE4LLCiXLOMhCvNwRBD35sJbRw03btl4CMAzD8zB7fvQBiiAIQCzAoyfCWfL7ZL3iujaNYZuFfvsYw+iCfTzK8FKtVx9n1y+6eL2K8NKyuS/1oYq6osPrOr0kjNQDekBYanWqrGaz4y3MeCDY5UBYUbBJeaZ3DdwkZV8IyZkMaiydBuzp2ebIbG51wGt9u1Htl6sF6NZOtExAp1Ix1APBjMl2f0/HFMy1iGraM98CxTc7iO2LVstqOQ0WKXnOOtOCvI57rDQv8ZFHjQKPjHoB3OkkMsnCKHw9PBKkZjWKf7AGXablKdMRpEoqkbJg58jj8jQpZNUeBmLs9lHFNA7gc93g2I6O6exu3PqdISkMG0UsiayLse8j1Ntdxyaifq8Kmz2wXYwkgUXyIcsPaWdeXiySl5hQ5a+SuRcEoaY0v4nvJ45EwoywboH8plKz5sVVdZeA7Musv2ZC4SPPfH1dgU9L/nPh4q2u4COrNWdym3f3p/JefQkIfInva8ruB3NrjyCoFfi190/9MxkiDNFY/1deSJRfz1vWoXmWXdB8melBPciLeU7DxG+EeFPLpjsvIQUskUPiFSaDDxUliDSGrPkR2JAkzlnbGBjTpVGPeegooybc9Ht0zklqiO5yVTnZOB6USp5rU+ycNqdC6p25aFFncacHZ4WTTs2Gxbp1dUTLaBpszqf4qIV2ZXuXEB5cFCR14NpAxYk5FLCh6hJbzYwRcvcyJWbH9A3PzLxu76lvetK2DAQhoKvaudXkOVGae8HuppIgpFuOmd7uJM8YPq2r1FXT+bGzOpYYxnJHJiEb6qXXvzn7kbfdt2k+B4MRNSzakmPhh4542qZBNiXP3NxyFaMx73rMJt7t4G231d6JIem0eeKV7P/My98J/+BBfGfl3/pn7QsNPmphjGRhLW5k3n68/1NYHfEPw1uBv4oV+MU/t/4OxenGAA==</OrderData></DataTransfer></body></ebicsUnsecuredRequest>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ebicsUnsecuredRequest Revision="1" Version="H004" xmlns="urn:org:ebics:H004" xmlns:ds="http://www.w3.org/2000/09/xmldsig#"><header authenticate="true"><static><HostID>SIZBN001</HostID><PartnerID>EBICS</PartnerID><UserID>EBIX</UserID><Product Language="de">EPICS - a ruby ebics kernel</Product><OrderDetails><OrderType>INI</OrderType><OrderAttribute>DZNNN</OrderAttribute></OrderDetails><SecurityMedium>0000</SecurityMedium></static><mutable/></header><body><DataTransfer><OrderData>eJxlUltzmkAUfu+vyNDHTrKLogEHyXBTLlIhJIJ5g+yKiC6wLKD59bVJa2Mzcx72u5yzM+d88sPxsL/pMG3ykkw5/g5yN5i8lign2ZRr2eZW5B6Ub3KYZyRhLcV+m7r4tKQIUyNhyc25nTRTbstYNQGg7/s7nOavzV1JMxBCyHMfjgm6NvXDd8cAQgigBM4e1OTZd075/yebbEpF/nivkn2LFRk1k8dQvcJeidp92yi8MCrvX0Qck4oydlxkzzqSfFdMXKdNFs5oCIkV647o5st732sPyFklqFmmqWFbsbR9patYOkXPVGhcVoPdm3nCuUYfq9kxnjPbHRRaKohWlWwisw74NEmBmgtgFRlCY60Dvdci0bVPjUvsdfUYrHmDWMEPaxhvZttQI7vVnIo2JKmR6QPB1dquqKWZr4tlCLIiIAfqvowGFO0WUTishwVietB5p6IX5rDvfgZzZx+C6OjpRQjpBjrQ3vVrNTzu+XQvSM6g67pFWPcGUx1/lkR2W0DPsjJzPMqID7f8eFlD3t95qt8eVava1guSdR4JowKvDcRKupF2WDUP1FygNbJngL5ZtHb66VQGn5b8e+HmsSoJJkxRA1V7Vy/MO7o60FN+wCFLDpUygLxwy8NzPfH8hB9PIHyRwT9dBleXvmRh9RFQRYVwLIMv9CfqKjUJZQRT21BMzdbD8/ALIT83f4VYBn/AlzGXmCu/ANdjEos=</OrderData></DataTransfer></body></ebicsUnsecuredRequest>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ebicsUnsecuredRequest xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns="urn:org:ebics:H004" Version="H004" Revision="1"><header authenticate="true"><static><HostID>SIZBN001</HostID><PartnerID>EBICS</PartnerID><UserID>EBIX</UserID><Product Language="de">EPICS - a ruby ebics kernel</Product><OrderDetails><OrderType>HIA</OrderType><OrderAttribute>DZNNN</OrderAttribute></OrderDetails><SecurityMedium>0000</SecurityMedium></static><mutable/></header><body><DataTransfer><OrderData>eJytlEuTokgUhff9KyqcpTGVgECpYdmBgAgib5Fyx0tAIIFMHuKvH6dquqdqplcTs8t7zs0bGfd8kavvt7J46mOEswq+TshnYvIUw7CKMpi8Trr28vt88n39bbWTOStuuhi3OopiJPit//S4CfEywq+TtG3rJQDDMDwPs+cKJYAiCAIQC/DoiXCW/Db56H6MRHD5aFjGQRbi5Y4g6Ml6xXVtGsM2C/328QyjC/bxKMNLtV59nF2/6OL1KsJLy+a+1Icq6ooOr+v0kjBSD+gBYanVqbKazY63MOOBYJcDYUXBJuWZ3jVwk5R9ISRnMqixdBqwp2ebI7O51QGv9e1GtV+uFqBbO9EyAZ1KxVAPBDMm2/09HVMw1yKqac98CxTf7CC2L1otq+U0WKTkOetMC/I67rHSvMRHHjUKPDLqBXCnk8gkC6Pw9fBIkJrVKP7BGnSZlqdMR5AqqUTKgp0jj8vTpJBVexiIsdtHFdM4gM91g2M7Oqazu3Hrd4akMGwUsSSyLsa+j1Bvdx2biPq9Kmz2wHYxkgQWyYcsP6SdeXmxSF5iQpW/SuZeEISa0vwmvp84EgkzwroF8ptKzZoXV9VdArIvs/6aCYWPPPP1dQU+LfnPhYu3uoKPrNacyW3e3Z/Ke/UlIPAlvq8pux/MrT2CoFbg194/9c9kiDBEY/1feSFRfj1vWYfmWXZB82WmB/UgL+Y5DRO/EeJNLZvuvIQUsEQOiVeYDD5UlCDSGLLmR2BDkjhnbWNgTJdGPeaho4yacNPv0TknqSG6y1XlZON4UCp5rk2xc9qcCql35qJFncWdHpwVTjo1Gxbr1tURLaNpsDmf4qMW2pXtXUJ4cFGQ1IFrAxUn5lDAhqpLbDUzRsjdy5SYHdM3PDPzur2nvulJ2zIQhICuaudWk+dEae4Fu5tKgpBuOWZ6u5M8Y/i0rlJXTefHzupYYhjLHZmEbKiXXv/m7Efedt+m+RwMRtSwaEuOhR864mmbBtmUPHNzy1WMxrzrMZt4t4O33VZ7J4ak0+aJV7L/My9/J/yDB/GdlX/rn7UvNPiohTGShbW4kXn7Mf+nsDriH4a3An8VK/CLf2797Q98eMYK</OrderData></DataTransfer></body></ebicsUnsecuredRequest>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ebicsUnsecuredRequest xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns="urn:org:ebics:H004" Version="H004" Revision="1"><header authenticate="true"><static><HostID>SIZBN001</HostID><PartnerID>EBICS</PartnerID><UserID>EBIX</UserID><Product Language="de">EPICS - a ruby ebics kernel</Product><OrderDetails><OrderType>INI</OrderType><OrderAttribute>DZNNN</OrderAttribute></OrderDetails><SecurityMedium>0000</SecurityMedium></static><mutable/></header><body><DataTransfer><OrderData>eJxlUltzmkAUfs+vyNDHTrOLogEHyXBTLlIhJIJ5g+yKiC6wLKD59bVJa2Mzcx72u5yzM+d88sPxsL/tMG3ykkw5/g5yt5i8lign2ZRr2eaHyD0oN3KYZyRhLcV+m7r4tKQIUyNhye25nTQT1Ey5LWPVBIC+7+/64V1JMzCAEAIogbMHNXn2jftwX1lxmr827+4QQp5T/v/JJptSkT/eq2TfYkVGzeQxVK+wV6J23zYKL4zK+xcRx6SijB0X2bOOJN8VE9dpk4UzGkJixbojuvny3vfaA3JWCWqWaWrYVixtX+kqlk7RMxUal9Vg92aecK7Rx2p2jOfMdgeFlgqiVSWbyKwDPk1SoOYCWEWG0FjrQO+1SHTtU+MSe109BmveIFbw3RrGm9k21MhuNaeiDUlqZPpAcLW2K2pp5utiGYKsCMiBui+jAUW7RRQO62GBmB503qnohTnsu5/B3NmHIDp6ehFCuoEOtHf9Wg2Pez7dC5Iz6LpuEda9wVTHnyWR3RbQs6zMHI8y4sMtP17WkPd3nuq3R9WqtvWCZJ1HwqjAawOxkm6kHVbNAzUXaI3sGaBvFq2dfjqVwacl/164eaxKgglT1EDV3tUL846uDvSUH3DIkkOlDCAv/ODhuZ54fsKPJxC+yOCfLoOrS1+ysPoIqKJCOJbBF/oTdZWahDKCqW0opmbr4Xn4hZCfm79CLIM/4MuYS8yVm1/X5hKV</OrderData></DataTransfer></body></ebicsUnsecuredRequest>