juks / iso-8583-socket-queue

ISO 8583 gateway
MIT License
195 stars 111 forks source link

Auto Reversal OpenWay #23

Closed rustamin closed 6 years ago

rustamin commented 6 years ago

Does auto reversal already implemented in OpenWay? I see in logic/openWay.js some todo staff about implementing auto-reversal.

juks commented 6 years ago

Hi. It is not implemented at the moment, so everyone familiar with that is invited to contribute.

rustamin commented 6 years ago

Hallo @juks,

Can I confirm that to do auto reversal, basically I have to repack the data, then transmit it using this.upstream.sendData(this, p);?

juks commented 6 years ago

Yes, basically 200 message turns into 400 message with some fields changed. You may see an example here: https://github.com/juks/SocketQueue/blob/2f7b6519fce1c615be84ffdd672dae8cdbb35878/lib/iso8583/lib/logic/smartVista.js#L36

rustamin commented 6 years ago

Ok. Thanks, it's really helpful.