0
我試圖從Quickfix(讀取修復消息)配置讀取消息到彈簧集成。我知道我可以使用入站通道適配器從外部源(如Quickfix)讀取數據。您能否提供一個如何編寫事件驅動入站通道適配器的示例? 我具有以下配置,其不工作彈簧集成:事件驅動的入站通道適配器
<bean id="QuickFixClient" class="com.limebrokerage.quickfix.QuickFixClient" >
<constructor-arg index="0" value= "/home/sbansal/workspace/bo/target/config/sterling.qfix" />
</bean>
<int:inbound-channel-adapter ref="QuickFixClient" method="fromApp" channel="FixChannel">
</int:inbound-channel-adapter>
你有什麼問題?您是否配置了''來定期輪詢該方法?該應用程序的「路徑」確實可行嗎?如果直接調用它,你的'QuickFixClient'工作嗎?請提供有關此事的更多信息。 –