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.!
Regarding ISO 8583 request response communication in javascript
607 views Asked by Surbhi Rathi At
2
There are 2 answers
0
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
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.