如何将消息作为应用程序级消息(fromApp)从FIXClient发送到FIXServer

问题描述 投票:0回答:0

我使用 .NET Quickfix 构建了 FIXServer,并使用此 Nodejs 构建了 FIXClient nodefix

我尝试将这个

Market Data Request
从FIXClient发送到FIXServer

8=FIX.4.4☺9=117☺9=108☺35=V☺52=20230731-09:39:00.625☺49=CLIENT1☺56=SIMPLE☺34=3☺55=AAPL☺146=1☺262=MARKETDATAID☺263=0☺264=0☺265=0☺267=1☺269=0☺10=073☺

FIXServer 未检测到此请求的任何传入消息,并且 FIXServer 和 FIXClient 中均未检测到错误。

但是当我尝试发送此“测试请求”时

8=FIX.4.4☺9=65☺35=1☺52=20230731-09:21:26.927☺49=CLIENT1☺56=SIMPLE☺34=4☺112=TEST☺10=175☺

FIXServer 检测到传入消息为

Administrative Messages
并向 FIXClient 发送响应。

如何将消息

Market Data Request
作为
Application Messages
从 FIXClient 发送到 FIXServer ?

我的FIXServer已经有回调函数FromApp来处理应用程序消息

node.js quickfix fix-protocol
© www.soinside.com 2019 - 2024. All rights reserved.