Implementation of the ISO 8583 protocol in Java, focused on making the creation, edition and reading of ISO8583 messages as simple and flexible as possible.

Source code can be found at https://bitbucket.org/chochos/j8583 – please post any issues you have over at Bitbucket.

Features

  • Create and parse ISO8583 messages
  • Easy XML-based configuration
  • Excellent performance, tested on environments of over 100K daily transactions

Project Activity

See All Activity >

Follow Java-ISO8583

Java-ISO8583 Web Site

Other Useful Business Software
Android Device Management for tablets, kiosks, POS, rugged devices, and more Icon
Android Device Management for tablets, kiosks, POS, rugged devices, and more

For single-use devices that are vertical specific like POS, Kiosk, ATM, Digital Signage, etc.

Esper is the industry's most powerful and comprehensive solution for single-purpose Android Enterprise devices such as kiosks, tablets, mPoS, digital signage, and more. It offers powerful, intuitive features to configure, deploy, and manage the your devices. It empowers control over the enterprise Android device lifecycle, including hardware, firmware, app development, monitoring, and remote remediation. Esper is the first solution to combine custom OS, enhanced firmware, a complete DevOps toolchain, and endpoint detection and response. Esper's full-stack admin suite goes beyond a regular MDM with unprecedented support for device management, remote control, and real-time OTA updates. It's the only single-dashboard suite for remote device diagnostics, advanced telemetry and debugging.
Rate This Project
Login To Rate This Project

User Ratings

★★★★★
★★★★
★★★
★★
3
1
0
0
0
ease 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 5 / 5
features 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 5 / 5
design 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 5 / 5
support 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 5 / 5

User Reviews

  • When using Binary mode, there is an error when parsing numeric field length is odd number. the error is here : public static BigInteger decodeToBigInteger(byte[] buf, int pos, int length) throws IndexOutOfBoundsException { char[] digits = new char[length]; int start = 0; for (int i = pos; i < pos + (length / 2) + (length % 2); i++) { => Should ignore the first digit because there is a padding with 0 to fill the hex value (20 digits instead of 19!) digits[start++] = (char)(((buf[i] & 0xf0) >> 4) + 48); digits[start++] = (char)((buf[i] & 0x0f) + 48); } return new BigInteger(new String(digits)); } Try this with field 2 length = 19. You should ignore the first zero when parsing odd binary value. Feel free to contact me if you need any help on this.
  • Excellent, very useful!
  • Great project, keep it up!
  • thanks man, great soft!
Read more reviews >

Additional Project Details

Registered

2007-04-25