Could the STAN number be repeteable and random?

拥有回忆 提交于 2019-12-11 15:51:13

问题


I'm developing a Connector with some bank, and we're using the ISO8583 protocol, right now, i'm setting the STAN(field 11) with some random number generated with a random generator but sometimes I have some number collisions, the question is, could I safely use this generator or do I need to make the STAN a sequential number?

Thanks in advance.


回答1:


The System Trace Audit Number (STAN) ISO-8583 number has different values and is maintained basically between relationships within the transaction. That is it can stay the same or the same transaction will have many STANs over its transaction path but it SHOULD be the same between two end point and it is usually controlled in settings whos STAN to use.

For Example:

Terminal -> Terminal Driver -> Switch 1->Switch 2->Issuer

The STAN is say assign by the terminal driver and then remains constant at minimum for the following relationships... though may change for each relationship.

  • Terminal Driver - Switch 1
  • Switch 1 -> Switch 2
  • Switch 2 -> Issuer

Note that internally within each system to the STAN may be unique as well but it needs to keep a unique STAN for each relationship.. and it shouldn't change between the request and response as it is needed for multi-part transactions (Single PA, Multiple Completions & Multi-PA, Single Completion) as well as for reversals and such in Data Element 90.




回答2:


Depends on your remote endpoint, but I've seen many requiring sequential numbers, and detecting duplicates.




回答3:


Usually STAN is the number increased for each request. Random STAN generation is not the best case for network messages sequences.

The duplication of STANs can be due to different sources, i.e. Host clients or Terminals.

STAN itself cannot be the only field to detect unique transaction requests. It must be mixed together with other fields like RRN, Terminal ID, Merchant ID.

See also "In ISO message, what's the use of stan and rrn ?"



来源:https://stackoverflow.com/questions/56385566/could-the-stan-number-be-repeteable-and-random

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!