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.
|