Re: [Quickfix-developers] Using QuickFix to analyze logged messages.
Brought to you by:
orenmnero
From: <OM...@th...> - 2003-02-03 16:48:49
|
m.getField(subID); should be: m.getHeader().getField(subID); --oren |---------+-----------------------------------------------> | | "Rob Kulseth" <ro...@ri...> | | | Sent by: | | | qui...@li...ur| | | ceforge.net | | | | | | | | | 02/03/2003 09:57 AM | | | | |---------+-----------------------------------------------> >----------------------------------------------------------------------------------------------| | | | To: <qui...@li...> | | cc: | | Subject: [Quickfix-developers] Using QuickFix to analyze logged messages. | >----------------------------------------------------------------------------------------------| I have a FIX message log of all orders that I have sent on a particular day. I need to parse those messages to get a report of all traffic for a particular user. I tried the following strategy using C# Fix.Message m = new Fix.Message(mes); Fix.SenderSubID subID = new SenderSubID(); m.getField(subID); mes is the raw fix message read from a database. I always get an Exception "FixFieldNotFound" even though inspection of the string reveals that tag 50 is present. I realize I am using QuickFix slightly different than it was designed for, but I think I should be able to do this. any suggestions on how to parse Fix messages this way? ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers |