c# - QuickFix/n - 登录内的自定义字段

标签 c# quickfix quickfixn

我正在尝试创建一个基于 QuickFix/n 的启动器。 我的对方(服务器)要求登录消息携带两个自定义字段。我已经将它们添加到数据字典、字段以及登录消息中。 在代码中,我可以操作消息来添加用户名和密码,但我找不到如何加载自定义字段。

以下是我迄今为止所做的一些摘录:

TradeClientApp.cs

...

public void ToAdmin(Message message, SessionID sessionID)
        {
            QuickFix.SessionSettings settings = new QuickFix.SessionSettings("./initiator.cfg");
            List<SessionID> sids = settings.GetSessions().ToList();
            Dictionary settingsDict = settings.Get(sids.First());
            var appName = settingsDict.GetString("ApplicationName");
            var userType = settingsDict.GetString("UserType");

            if (message.GetType() == typeof(QuickFix.FIX44.Logon))
            {
                message.SetField(new Username("USERNAME"));
                message.SetField(new Password("PASSWORD"));
                message.SetField(new QuickFix.Fields.ResetSeqNumFlag(true));

                //tag 9933
                message.SetField(new RawData(string.Format($"9933={appName}")));
                //tag 20110
                message.SetField(new RawData(string.Format($"20110={userType}")));

            }
        }

initiator.cfg 文件:

[DEFAULT]
UseDataDictionary=Y
DataDictionary=./spec/FIX44.xml
FileStorePath=store
FileLogPath=log
ConnectionType=initiator
ReconnectInterval=60

[SESSION]
BeginString=FIX.4.4
SenderCompID=USERNAME
ResetSeqNumFlag=Y
Username=USERNAME
Password=PASSWORD
TargetCompID=TARGETCOMPID
StartTime=12:30:00
EndTime=23:30:00
HeartBtInt=10
ApplicationName=app-name
UserType=V
SocketConnectPort=446
SocketConnectHost=SERVERHOST

FIX44.XML内部

<message name="Logon" msgtype="A" msgcat="admin">
      <field name="EncryptMethod" required="Y" />
      <field name="HeartBtInt" required="Y" />
      <field name="RawDataLength" required="N" />
      <field name="RawData" required="N" />
      <field name="ResetSeqNumFlag" required="N" />
      <field name="NextExpectedMsgSeqNum" required="N" />
      <field name="MaxMessageSize" required="N" />
      <group name="NoMsgTypes" required="N">
        <field name="RefMsgType" required="N" />
        <field name="MsgDirection" required="N" />
      </group>
      <field name="TestMessageIndicator" required="N" />
      <field name="Username" required="N" />
      <field name="Password" required="N" />
      <field name="ApplicationName" required="N" />
      <field name="UserType" required="N" />
    </message>

 <fields>
   ...

   <field number="9933" name="ApplicationName" type="STRING"/>
   <field number="20110" name="UserType" type="STRING" />
 </fields>
</fix>

当我尝试连接时,我收到此日志:

<outgoing> 8=FIX.4.49=12035=A34=149=USERNAME52=20191008-21:19:41.49856=TARGETCOMPID96=20110=V98=0108=10141=Y553=USERNAME554=PASSWORD10=097

使用 RawData(如我的示例中所示),该消息携带 20110=V 作为 RawData,即标签 96,这对我没有帮助。 我已经在 ToAdmin 中尝试过:

message.Header.SetField(new StringField(QuickFix.Fields.Tags.UserType, ""));

message.SetField(new QuickFix.Fields.UserType(true));

但都不起作用。

到底如何将自定义字段添加到登录消息中?

最佳答案

我认为您的 RawData 数据类型错误。这实际上是针对原始数据,而不是针对遵循默认编码的字符串。

来自规范:

string field containing raw data with no format or content restrictions. Data fields are always immediately preceded by a length field. The length field should specify the number of bytes of the value of the data field (up to but not including the terminating SOH).

我不太熟悉 QuickFIX 的 C# 实现,但您应该能够使用特定标签号添加这些字段,例如

message.SetField(new StringField(20110, "V"));

我希望没有语法错误,但你应该明白了。

编辑:我看到您正在手动设置登录消息上的 ResetSeqNum 字段。这是不鼓励的。当您在设置中设置 ResetSeqNum=Y 时,quickFIX/n 应该处理这个问题(您已经有该设置)。

关于c# - QuickFix/n - 登录内的自定义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58294513/

相关文章:

c# Array.IndexOf(Array,item) 如果没有匹配则需要最接近的项目

python - 作为发起者重置接受者序列号,但无法使用 onLogon

quickfixn - QuickFix/N : How to have typed messages when using FIXT1. 1 与 FIX5.0?

quickfix - 捕获未通过 QuickFix 验证的传入 FIX 消息

c# - Quickfix/n-没有连接超时事件或找不到主机?

fix-protocol - QuickFIX/N 是否支持包含两个组件且每个组件具有相同名称的消息?

c# - 以全屏模式运行的 UWP C# 应用程序在全屏观看视频后切换到窗口模式

c# - 我如何在 LINQ 中使用 Regex.Replace 方法

c# - 为获取/设置私有(private)值创建单独的公共(public)函数有什么意义?

c# - 尝试将字符串转换为 MarketDataIncrementalRefresh