|
From: Andrew M. <an...@nm...> - 2019-02-20 19:33:34
|
It looks like the validation boolean on message.fromString is ignored. I
have to validate a 2nd time to see the exception.
sessionDictionary = new DataDictionary("c:\\java\\FIX50SP2.modified.xml");
appDictionary = new DataDictionary("c:\\java\\FIXT11.xml");
// message.fromString: validation=true
message.fromString(m4, sessionDictionary, appDictionary, true); //passes
appDictionary.validate(message); // fails
|