简体   繁体   中英

J8583 project for parsing/creating iso8583 financial messages

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 my answer is biased because I'm the author, but jPOS can be an alternative. Take a look at http://jpos.org and its documentation ( http://jpos.org/doc/proguide-draft.pdf ).

Hope it helps.

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 the parseMessage method, 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.

Here is the source code for the project that you can clone https://bitbucket.org/chochos/j8583/src/master/

here is the XML Configuration Guide http://j8583.sourceforge.net/xmlconf.html

All from the same person and framework

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM