Skip to content
Advertisement

how to handle subfields with JPOS library in java?

i have to build an iso 8583 message and for that i used the jpos library which is, according to my researches, the best libray to handle iso 8583 communications. I succeeded to build and send iso 8583 messages with fields in range 0-128 as you can see in this code :

JavaScript

and the response class

JavaScript

but i have a problem, if we would like to set subfields for field 40 for instance, how can we set them and integrate them in the ISOMsg object to send?

UPDATE : here is my packager :

JavaScript

and finally the exception i got :

JavaScript

LINE 50->channel.send(isoMsg); LINE 84-> s.sendData();

Advertisement

Answer

Its failing as its trying to set the bitmpap field -1

If you don’t have a bitmpap for DE48

Define your DE48 as the following with emitBitmap to false

JavaScript

Sample test code

JavaScript

Since we do pack and unpack we ae sure that the data is being being handled correctly.

output

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement