Sha256: 68207ee2b3ee708f1fd656cb661ae73b4c1db48343d074592a11e982af171c64

Contents?: true

Size: 1 KB

Versions: 14

Compression:

Stored size: 1 KB

Contents

class Epics::AZV < Epics::GenericUploadRequest
  def header
    Nokogiri::XML::Builder.new do |xml|
      xml.header(authenticate: true) {
        xml.static {
          xml.HostID host_id
          xml.Nonce nonce
          xml.Timestamp timestamp
          xml.PartnerID partner_id
          xml.UserID user_id
          xml.Product("EPICS - a ruby ebics kernel", 'Language' => 'de')
          xml.OrderDetails {
            xml.OrderType 'CD1'
            xml.OrderAttribute 'OZHNN'
            xml.StandardOrderParams
          }
          xml.BankPubKeyDigests {
            xml.Authentication(client.bank_x.public_digest, Version: 'X002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256")
            xml.Encryption(client.bank_e.public_digest, Version: 'E002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256" )
          }
          xml.SecurityMedium '0000'
          xml.NumSegments 1
        }
        xml.mutable {
          xml.TransactionPhase 'Initialisation'
        }
      }
    end.doc.root
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
epics-2.4.0 lib/epics/azv.rb
epics-2.3.0 lib/epics/azv.rb
epics-2.2.0 lib/epics/azv.rb
epics-2.1.2 lib/epics/azv.rb
epics-2.1.1 lib/epics/azv.rb
epics-2.1.0 lib/epics/azv.rb
epics-2.0.0 lib/epics/azv.rb
epics-1.8.1 lib/epics/azv.rb
epics-1.8.0 lib/epics/azv.rb
epics-1.7.2 lib/epics/azv.rb
epics-1.7.1 lib/epics/azv.rb
epics-1.7.0 lib/epics/azv.rb
epics-1.6.0 lib/epics/azv.rb
epics-1.5.2 lib/epics/azv.rb