[Quickfix-users] Converting fix string into fix message
Brought to you by:
orenmnero
|
From: Christodoulou, C. D (london) <chr...@ml...> - 2003-10-02 13:42:33
|
Hi
I am using quickfix version 1.5.0 for .NET and have a problem converting a
fix string into a fix message.
For example:
Message fixMsg = new Message();
fixMsg.setString(myFixStringFromSocket);
Message.Header header = fixMsg.getHeader();
QuickFix.MsgType msgType = new
QuickFix.MsgType();
router.getField(msgType);
nType = Convert.ToInt32(msgType.getValue());
switch (nType)
{
case 11:
ExecutionReport execReport =
new ExecutionReport(fixMsg);
1. There is no setString in Message ...
2. There is no copy constructor for Message
3. and no constructor in execution report to handle messages.
How is it done in .NET? This works fine in unix version.
Thanks
Chris
Thanks
Chris
|