i use Apache Mina for TCP/IP Communication for ISO8583 Message. But i wonder, what the character encoding for the message? Just send standard String or bytes?
Asked
Active
Viewed 1,184 times
1 Answers
2
The type of message encoding is going to depend on the ISO8583 Message Spec of the processor/bank in which you are sending to.
From your code you will likely send an array of bytes vs a string due to the binary nature of ISO8583, its bitmap, and field types.
Some interfaces will use ASCII, others EBCDIC - Extended Binary Coded Decimal Interchange Code , some values will be Binary Coded Decimal ('BCD') - The ISO8583 Message spec and if you can get ahold of any sample traces or samples messages will assist you.

David Bergert
- 131
- 5