-
>> Where are you getting those messages?
On standard output. I created a test program and ran it.
>> Which is your SWIFT usage context?
I need to convert MT100 files to MT103 to import them into Barclay's Business Internet Banking. Barclay's don't provide a converter.
>> If you still need to parse those messages you could manipulate the message String and put some...
2009-06-28 11:27:30 UTC in WIFE - open source SWIFT
-
Many thanks Sebastian.
Strangely enough, the MT100 file whose contents I used to create a test string had an empty Block1 as shown above.
I have looked for MT100 specifications on the Net, but to no avail (although I could find MT103 specs). Does anyone know where you can find them?
phi2.
2009-06-27 13:41:34 UTC in WIFE - open source SWIFT
-
Thanks Sebastian.
I have tried running a program based on the code above:
--------------------------------------------- source -------------------------------
import java.io.*;
import net.sourceforge.wife.swift.parser.SwiftParser;
import net.sourceforge.wife.swift.model.SwiftMessage;
public class WifeTest {
public static void main(String[] args) {
SwiftMessage msgMT100 =...
2009-06-26 16:49:58 UTC in WIFE - open source SWIFT
-
Hello,
is it possible to convert an MT100 file to MT103 with WIFE?
If so, could you please provide an example?
Many thanks.
phi2.
2009-06-26 14:34:29 UTC in WIFE - open source SWIFT
-
Hello,
I am trying to converting the following code to Vole C++:
Dim subj As Variant
subj = doc.GetItemValue( "Subject" )
Messagebox( subj( 0 ) )
??? notesDocumentSubject = notesDocument.invoke_method<??? >(
L"GetItemValue",
L"Subject");
what should ??? be?.
2009-03-18 16:05:10 UTC in VOLE - A Neat C++ COM/Automation Driver
-
Found the solution:
FILETIME createdFileDate = notesDatabase.get_property<FILETIME>(
L"Created");.
2009-03-18 15:36:57 UTC in VOLE - A Neat C++ COM/Automation Driver
-
Hello,
how do you convert a DATE variant to a std::string, long, etc., or any other type that can be easily processed?
object notesDocument = notesViewEntry.get_property<object>(
L"Document");
std::cout << "Got Notes View Navigator Entry Document" << std::endl;
Date dateObject = notesDocument.get_property<Date>(...
2009-03-18 15:24:36 UTC in VOLE - A Neat C++ COM/Automation Driver