ISO8583 Inbound endpoint allows the ISO8583 standard messages through WSO2 ESB. ISO8583 is a message standard which is using in financial transactions. There are various versions in ISO8583 standard, Here the Inbound is developed based on 1987 version. For more information about ISO8583 Standard, go to ISO8583 Documentation.
...
The inbound configuration can be added in the Inbound UI . Here the Port is the main parameter and the client need to connect with inbound by using the port.
Code Block | ||
---|---|---|
| ||
<inboundEndpoint class="org.wso2.carbon.inbound.iso8583.listening.ISO8583MessageConsumer" name="custom_listener" onError="fault" sequence="request" suspend="false"> <parameters> <parameter name="sequential">true</parameter> <parameter name="inbound.behavior">listening</parameter> <parameter name="port">5000</parameter> </parameters> </inboundEndpoint> |
...
Parameter | Description | Required | Possible Values | Default Value | |||
---|---|---|---|---|---|---|---|
port | Hosts have ports, socket connection will create according to that port and server started to listening to that port , once the socket connection is established. | Yes | 0-65535 | 5000 | |||
coreThreads | The number of threads to keep in the pool. | No | |||||
maxThreads | The maximum number of threads to allow in the pool. | No | |||||
keepAlive | If the pool currently has more than corePoolSize threads, excess threads will be terminated if they have been idle for more than the keepAliveTime. | No | isProxy | isProxy defines whether this endpoint inbound is acting as a proxy for another backend service or processing the message itself. | No |
Info | ||
---|---|---|
| ||
To send ISO8583 Standard message to inbound, can use Java clients applications. client need to produce the ISO8583 Standard messages and get the acknowledgement from inbound. A Sample test client program is provided in https://github.com/wso2-docs/CONNECTORS/tree/master/ISO8583/ISO8583TestClient. You can use this sample client to test the inbound. |
...