I'am currently looking for an api for parsing/creating iso8583. iso8583 is a barbarian iso norm of raw string message.
I have found the j8583 project, http://j8583.sourceforge.net/index.html, but i can't found easy code example to parse a message.
Do you know good examples using this api ? or using another api ?
Thank you for your time
Perhaps I need to reorganize/improve the docs?
The concept is fairly simple: Create a
MessageFactory, configure it (the simplest way is via XML config file) and use that to parse messages with theparseMessagemethod, which receives a byte array.The library includes a simple message parser which you can look at to get an idea. The test suite can also be helpful.