Re: [Quickfix-developers] Data Dictionary
Brought to you by:
orenmnero
From: Andrew C. <And...@Tw...> - 2008-10-07 19:10:20
|
Not sure about the C++ syntax but you need to call Message.GetHeader() to access the header fields Andrew Culross Direct +1 (914) 220-8849 http://www.twofour.com/emaildisclaimer.aspx -----Original Message----- From: crazy4venu [mailto:cra...@gm...] Sent: Tuesday, September 30, 2008 8:14 AM To: qui...@li... Subject: [Quickfix-developers] Data Dictionary QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html Dear All, By using this code i missing some fields such as begin string, MsgType and some other fields FIX::DataDictionary dd("FIX42.xml"); FIX::Message msg=(FIX::Message)text.c_str(); FIX::FieldMap fieldmap; string str,str2; for (FIX::FieldMap::iterator i = msg.begin (), e = msg.end (); i != e; ++i) { dd.getFieldName(i->first,str2); cout <<str2<<':'<< i->first << '=' << i->second <<"\n"; } can any one please help me ? Regards Venu -- View this message in context: http://www.nabble.com/Data-Dictionary-tp19740848p19740848.html Sent from the QuickFIX - Dev mailing list archive at Nabble.com. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers |