Regarding ISO 8583 request response communication in javascript

595 views Asked by At

I want to send request & receive response in JavaScript using ISO-8583 message format. Please share the steps how it will implement. Thank you in advance.!

2

There are 2 answers

3
André Haupt On

It is not possible to do this as you would need to establish a raw TCP connection to the host. Most JavaScript browser implementations does not allow straight TCP connections.

The way we do it is to create a webservices wrapper around our ISO 8583 client.

0
Danstan On

Here is a library I have written just for that - Nodejs though. ISO 8583 Js. There is an example of how to do message encoding, passing via TCP and decoding on the other side. See Example