anyone have an example of how to create and parse ISO 8583 using Delphi?

Comments

  1. Doesn't look like any for Delphi. One in JavaScript here:

    https://github.com/diorahman/iso8583

    ..and Java here:

    https://sourceforge.net/projects/j8583/

    If you have skills in either, you could covert one?

    ReplyDelete
  2. From a brief look at what that ISO is, I would say that most of this stuff needs to be bitmap-based.

    You really need a manual with all the specifications of your required implementation then use ORs and ANDs to process the whole thing using bit masks.

    It is not particularly bad, as long as you get the various bits right.

    ReplyDelete

Post a Comment