简体   繁体   中英

How to send request to bank and receive response using ISO 8583 messages?

I have a question about ISO 8583 messages. I learned my self how to create an ISO 8583 massage but I don't know how to use this message to send request and receive response from the bank. In which way can I get connect with the bank? And how?

There are different types of connections.

For sample it could be secure TCP/IP socket connection, permanent or connection on demand.

It can be HTTPS messages exchange where HTTP headers play one of primary role with data routing and customer identification.

Also iso8583 message can be extended with different message headers or length identifiers.

Some protocols used blocks exchange splitting the iso8583 message to small parts. It is limitation of old infrastructure used behind.

So, you should clarify the connection method with your acquirer bank or service provider. If you authorized developer for that services you should get this info without problem.

You need to open a network socket on the host and send the message through as a byte array.

You could use most programming languages to do this, but here is an example of sending a byte array to a network socket it in C#. (Populate the bytesSent variable with your ISO message.)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM