Questions tagged [swift-mt]

SWIFT is the Society for Worldwide Interbank Financial Telecommunication. It provides a network to allow financial and non-financial institutions (e.g. corporates) to transfer financial transactions through a 'financial message'. SWIFT message types are identified with the literal "MT" (Message Type), followed by a 3-digit number (e.g. MT304).

SWIFT messages consist of five blocks of data including three headers, message content, and a trailer. Message types are crucial to identifying content.

All SWIFT messages include the literal "MT" (Message Type). This is followed by a 3-digit number that denotes the message category, group and type.

Source: http://en.wikipedia.org/wiki/SWIFT_message_types

52 questions
0
votes
1 answer

how to Iterate over two list of different size?

I have two Lists of swift tags. List source_tagListBlock = source_block4.getSubBlocks("16R", "16S"); List target_tagListBlock = target_block4.getSubBlocks("16R", "16S"); How to compare the values in list in…
rockersdeal
  • 71
  • 12
0
votes
1 answer

Swift messages(MT*)

I am looking for an option to store the swift messages(MT101) in hdfs or nonsql database. Can we use python in spark to store it in mongo DB? Please let me know if somebody worked on a similair requirement
Joby
  • 21
  • 4
0
votes
1 answer

Java Swift BICDownload exitcode=0

I'm automating the download of BIC file, using the Swift Automation Interface Spec The all ok scenario works ok, but in a simple error scenarios testing with invalid credentials the code in the java sample client application returns a exitcode of…
João
  • 2,296
  • 5
  • 20
  • 30
0
votes
1 answer

Lifting out certain words in SWIFT message

I have the following regex expression: (?<=[^:]:)?([a-zA-Z]{6}\w[a-zA-Z]{4}) Which is looking for every instance of SWIFT BIC code. The SWIFT code consists of 8 or 11 characters. When 8-digits code is given, it refers to the primary office. First…
CSharpNewBee
  • 1,951
  • 6
  • 28
  • 64
0
votes
2 answers

best approach for my pattern match

So, I've built a regex which follows this: 4!a2!a2!c[3!c] which is translated to 4 alpha character followed by 2 alpha characters followed by 2 characters followed by 3 optional character this is a standard format for SWIFT BIC code…
CSharpNewBee
  • 1,951
  • 6
  • 28
  • 64
0
votes
2 answers

Finding text within a text block

i'm looking for most efficient method of lifting text between certain SWIFT tags. My string contains the following :59:/SOMETEXT MORETEXT EVEN MORE TET :71A:/some other text So in the example above, i need to store all text lines between :59: and…
CSharpNewBee
  • 1,951
  • 6
  • 28
  • 64
-1
votes
3 answers

Some SWIFT Questions

I hava some questions about SWIFT: What database does SWIFT use and can I connect to it and insert messages to it? If I can insert message in database can SWIFT send it? Is it possible to send a message using SWIFT using other languages such C#,…
Elinor
  • 15
  • 3
1 2 3
4