There is no doubt that the SWIFT standard (it has even been made into an ISO standard, 15xxx or something) is the standard for (inter-bank) transactions in Germany, Europe and most likely even beyond - I just doubt that it makes sense for the two types of transaction (money transfer, balance statement) that will be used from the end customer via HBCI to implement the whole stuff that SWIFT needs, as noone will ever be able to use it.

I know that there are test accounts for many german banks, but I haven't felt the need to implement a webscraper for a banking interface that I will never use myself, nor have I felt the lust to deparse the broken Javascript some banks (SEB for example) use as an excuse for navigation.

I can only recommend to you to implement as much as you (personally) need in your interface module, and not to embark on a large head-driven project that will not fullfill anyones particular need. If you (think you) need HBCI, implement as much as you need to get the job done. Until now, there are no HBCI modules on the CPAN, most likely because nobody felt the need to write them or maybe because HBCI was too hard to tackle for the people interested.

Under Win32, Perl can (relatively easy) interface to the HBCI via the Win32::API module, which allows you to load any DLL and use the functions therein.

One potential hurdle I see is, that there is no easy way of testing a HBCI program, as you don't have a server to test against, and testing against your own bank account is rather risky in terms of money.

Personally, I can only recommend using a bank with a tried and true online functionality that suits your way of doing business online - for me, the model provided by the Postbank has been quite enough, as I trust https and PIN/TAN to provide enough security for automating download of my account data and making manual money transfers.

perl -MHTTP::Daemon -MHTTP::Response -MLWP::Simple -e ' ; # The $d = new HTTP::Daemon and fork and getprint $d->url and exit;#spider ($c = $d->accept())->get_request(); $c->send_response( new #in the HTTP::Response(200,$_,$_,qq(Just another Perl hacker\n))); ' # web

In reply to Re: Re: Re: Home Banking Computer Interface (HBCI) with Perl by Corion
in thread Home Banking Computer Interface (HBCI) with Perl by LupoX

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.