SWIFT message parsing for .NET [closed]

喜夏-厌秋 提交于 2019-12-05 19:39:35

We ended up with writing our own. There were several reasons for that:

  • original SWIFT messages are fixed width and well documented, which makes them easy to handle
  • new SWIFT messages are XML based, even easier to handle
  • we needed only to parse and produce several message types
  • we could fit it into our integration framework

So, in my opinion it really depends how many different message types you need to handle. If only a handful - it would not take much to code own parser.

You can simply choose any .NET XML stack to handle SWIFT messages.

This is possible due to the MT/XML libraries released by SWIFT themselves (as noted by Juliusz).

So now all SWIFT messages can be treated as pure XML! No more headaches trying to understand the intricaties of the FIN syntax!

Tariq Sheihk

Different banks have different file formats even if their message formats are the same but file type might be different. Some use a simple text file , other use CVS. It's best do it your online or look java open source project Wife 1.5. I am trying to convert it to .net and publish it on CodeProject but haven't had the time yet.

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