I am using j8583 Java library to generate and read ISO 8583:1987
messages and it is working perfect.
Now I want to generate and read ISO 8583:1993
messages. Can I do it with making some tweaks in the same code or do I need to use some new library to achieve it?
Thanks.
You can achieve the same making some changes in your creating and parsing guide for your ISO Messages. As messages of
ISO 8583:1987
version starts with0xxx
and messages ofISO 8583:1993 version
starts with1xxx
.For example,
While working with
ISO 8583:1987
you create message with<template type="0200">
as below:And when you are working with
ISO 8583:1993
you have to create message with<template type="1200">
as below:Similarly, while parsing the
ISO 8583:1993
you have to change the<parse type="0210">
to<parse type="1210">
as below: