Questions tagged [jpos]

jPOS is an open-source, mission-critical enterprise software, based on International Organization for Standardization transaction card originated messages standard (ISO-8583). Java platform-based jPOS provides an open-source software bridge between ISO 8583-based messages and your internal processing networks and systems. It serves as the messaging foundation for systems that exchange electronic transactions made by cardholders using payment cards.

jPOS is a free and open source library/framework that can be used to implement financial interchanges based on the ISO 8583 standard and other Point of Sale related peripherals and protocols.

It currently supports versions 1987, 1993 and 2003 of the standard as well as multiple ANSX9.24 standards.

The project page is: http://jpos.org

225 questions
0
votes
1 answer

Jpos Generic Packager XML

Im currently working with Jpos and created an xml for a process that has the description ASCII/Packed Maps/Unpacked Numerics/ Var Len I The xml works correctly with this process. I now want to make a second one for a process that rather than…
0
votes
1 answer

Concurrency Issue in ISORequestListener

I am using jpos library for transaction management(Spring boot project). I am implementing ISORequestListener as below. @Component public class MyRequestListner implements ISORequestListener, Configurable { protected String var1; protected…
Yashasvi Raj Pant
  • 1,274
  • 4
  • 13
  • 33
0
votes
1 answer

Error in Running Multiple Threads with JPOS on JMeter for ISO8583

I am Trying to run My IS08583 Script for Multiple Users using JPOS Plugin. However i could find below Output in the Sampler Result. Can anyone suggest what settings needs to be changed in JPOS for running my Script on Multiple users without this…
0
votes
1 answer

How does Q2 fit into JPOS when connecting to a banks switch?

I am relatively new to JPOS and I have only used it to pack and unpack messages and I would like to understand how Q2 can help me. At the moment I am developing an application that receives requests from mPOS to a central server using REST and then…
0
votes
1 answer

Android Studio jPOS org.jpos.iso.ISOException: java.lang.ClassNotFoundException

I'm trying to use jpos in my android project, I downloaded a fields.xml from an example from the internet. I would like to know why or how I resolve this error when calling the GenericPackager function. java.lang.Exception:…
0
votes
1 answer

Problem with sending iso message using ChannelAdaptor & QMUX

I am using a channel adaptor and qmux to send iso8583 message to a socket server. I write 2 maven project Jpos client & server in netbeans. The server accepts the connection but doesnt receive the message (or the client doesnt send message) but when…
0
votes
1 answer

jpos : For incoming message loading dynamic packager works but not for outgoing message

I have created my own channel extending NAC channel based on the header it will load the packager dynamically. The channel is as below based on the values the header is correctly identified for the incoming and the outgoing message (example…
0
votes
1 answer

Go through sub tags of IsoMsg and get values for jPOS

I have a jPOS project and I want to loop through sub tags of a field to get it's values. I have the following code and I don't know if it does the job: Map subTagMap = new HashMap<>(); ISOMsg champ11 =…
Ares
  • 71
  • 1
  • 10
0
votes
0 answers

jpos : problem in unpacking field 123 even though the field size is 999

in the packager DE-123 is defined as below when i try to send below value , the transaction is accepted and…
0
votes
1 answer

jpos : How to increase wait time to 40 secs so can handle delayed response messages

This is a scenario where the another system takes time to send the response back. in this case I would like jpos to wait for for 40/45 secs before it could timeout. below is the serious of log events: Request send to jpos :
0
votes
1 answer

jpos : Build failed suddenly for no reason

I was building jpos application which was all good for all these days. I use to run the below command to build and both were working fine. gradlew.bat assemble -x signArchives installApp or gradlew.bat assemble -x signArchives install But suddenly…
0
votes
0 answers

jpos : is it possible to have different header for incoming and outgoing message in the same channel

jpos : how to handle messages with different headers with different length for incoming request and response I have a below custom channel - the intentions is to handle different header of different length package org.jpos.iso.channel; import…
0
votes
1 answer

jpos : how to handle messages with different headers with different length listening to the same endpoint and using different packager

it is not a duplicate question since the previous question some functionality changed and this as a extension of the below. created a new post so helpful for others too who look for different solutions jpos : how to handle messages with different…
0
votes
1 answer

jpos : how to handle messages with different headers with different length listening to the same endpoint and using same packager

The scenario is a third party application will send messages to jpos. possibility is that it will send two types of messages with different message header length say one will be length 22 bytes and another will be 44 bytes.the packager will be…
0
votes
1 answer

jpos Gateway : Not able to send back the response message received from the remote host to the client requested

I am new to jpos. trying to use jpos-2_1_3 out of the box. I can see the message forwarded to remote host and response back but the response message is not delivered to the requested client.Getting the below error [HOST_UNREACHABLE]…
Abrar Ahamed
  • 199
  • 11