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
2 answers

Peer disconnect when receiving iso8583 message from server

I got the following code snippet: final ISOMsg isoMsg = new ISOMsg(); isoMsg.setPackager(packager); isoMsg.setMTI("0800"); isoMsg.set(3, "9A0000"); isoMsg.set(7, ISODate.formatDate(now, "MMddHHmmss")); isoMsg.set(11, "123456"); isoMsg.set(12,…
Sunday Okpokor
  • 721
  • 6
  • 18
0
votes
1 answer

How to know who is the requester in Jpos?

I have a program using jpos, i want to filter so my server only respond from specific ip or port. how to know where message come from ? This is my simple code public class ServerListener implements ISORequestListener { private final static…
user2571094
  • 177
  • 1
  • 3
  • 12
0
votes
2 answers

JPOS Q2 : Unable to see raw ISO 8583 data

[Update] I was able to bring up the JPOS client and server simulator on the same box using this link : http://jpos.org/blog/2013/07/setting-up-the-client-simulator/( Please note the setup is pretty similar to one described in the link for running a…
Harry
  • 528
  • 1
  • 5
  • 21
0
votes
1 answer

Running JPOS Client and Server Simulator on the same machine throws error

I am following the instructions from here : http://jpos.org/blog/2013/07/setting-up-the-client-simulator/ to set up the client and server simulator. I am able to start one of them on my machine. If i start the server after the client is run, it…
Harry
  • 528
  • 1
  • 5
  • 21
0
votes
2 answers

Extracting Element Value from jPOS ISO

I am trying to extract a value within an ISO String which I get from a jPOS Structured Data. The string looks like this: 221ThirdPartyBillPayment3125 1111111111
Sulaiman Adeeyo
  • 485
  • 6
  • 19
0
votes
1 answer

How many jobs can jPOS process?

I wanted to determine how jPOS handle processes received. Do jPOS process multiple jobs/threads? If so, how to determine the number of threads that jPOS handles? How to configure multithreading to jPOS?
0
votes
1 answer

Message is only read by client after server closes the connection end in java

I have been trying to send ISO8583 messages created with the JPOS Library in Java. What I have done is written a simple code of socket connection for sending message. I'm able to send the message successfully but the problem is the server sends a…
0
votes
2 answers

iso 8583 Unpacking error field 123 arrayindexout of bound

I am using JPOS to pack and unpack ISO message the packing of the message is just good and when I get the following…
jabsy
  • 19
  • 1
  • 7
0
votes
1 answer

JPOS Q2 initialization using Tomcat6

We are using jpos with Q2 with one of our webapp deployed on tomcat6 and it was all good. Now we have to implemented another jpos application using q2 stuff but when we deployed it on the same tomcat6 server, it didn't load the objects, e.g. QMUX,…
Mubashar
  • 12,300
  • 11
  • 66
  • 95
0
votes
2 answers

Compatibility of jPOS and Weblogic

Hello I'm having hard time trying to configure jPOS to run in weblogic. jPOS version 1.9.8 weblogic 10.3.6.0 I got this error: 14:01:12 [[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'] (T0100.java:31) …
daan
  • 1
0
votes
1 answer

Adding PDF Printer in JPOS.xml

I'm new in JAVA, and especially in ORPOS application. I need to add a PDF Printer to ORPOS application to simulate the real printer. I find that in JPOS.xml I must change the printer details but I don't know what details to change. I installed the…
Spinner
  • 11
  • 2
0
votes
0 answers

org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named '910000' is defined

I have businesskeys.properties file which keeps codes like 910000=terminalAliveCommand etc. My application sends message to pos device and receives message from pos device. In xml I defined bean for this terminalAliveCommand:
kraskixxx
  • 89
  • 8
0
votes
1 answer

jPOS taskadaptor get object instance

i would like to ask a little question about task adaptor in q2. i have a class that extends TaskAdaptor and an xml class with to instantiate it. so my question is, how do i get the object instance created by the xml in java? Thank you very much for…
Yoh Hendry
  • 417
  • 6
  • 15
0
votes
1 answer

Update GenericSubFieldPackager to handle undefined fields

In my packager xml file I have a subfield packager for a field. The spec defines multiple field for this (say 25 of them) but I only care about the first one. So I really dont want to define more than that one field in my packager. The problem…
chhil
  • 442
  • 4
  • 12
0
votes
2 answers

jpos : cannot find control data "0x0D" when using isoMsg.getString(id) method

Some field value contains 0x0D specail character The value from the hexdump: 4041000000000001D0534534534112342340000 But when I get the field value using isoMsg.getString(field_id), I got an equal sign instead of the 0x0D character…
Muhammad Hewedy
  • 29,102
  • 44
  • 127
  • 219
1 2 3
14
15