Creating ISO8583 Server using jPOS Q2

Creating ISO8583 Server using jPOS Q2 is as simple as Creating ISO8583 Client using jPOS Q2 , all we need is to create xml configuration for the QServer and create IsoRequestListener . There are a bunch of properties available to configure a jPOS QServer , you can take a look at the class directly. This post will only cover the basic configuration to create a Server. Below diagram describes the flow for ISO Server to receive and send the response message. ISO Server will listen to the configured port and accept incoming connections. ISO Channel will get the message from the stream based on the specification. Here we are using ASCIIChannel . ISORequestListener.process() method will be invoked after the message successfully unpacked. This is where our logic to process the message starts. Sending response messages back to the clients by invoking ISOSource.send() method. Here it is configuration xml for QServer . <?...