Questions tagged [quickfixj]

QuickFIX/J is the Java port of QuickFIX, an open-source engine for writing applications that communicate via FIX (Financial Information eXchange) protocol.

Documentation and source are at QuickFIXJ.org.

325 questions
0
votes
0 answers

Reset sequence numbers but don't set ResetSeqNumFlag on Logon

Our customer (acceptors for this connection) has specified that sequence numbers should be reset after each disconnect or logout, but also that the Logon message may NOT contain the ResetSeqNumFlag field. I've removed the field from the Logon…
Gustav Karlsson
  • 1,151
  • 9
  • 25
0
votes
1 answer

Load Balancer for QuickFIXJ Session

We have single session with our broker. We are getting market data on that session. Basically we want to distribute that data to different team on FIX only. Is there any ready solution which can work both as acceptor and initaor. Initator would get…
user1047873
  • 230
  • 3
  • 8
  • 28
0
votes
1 answer

QuickFixJ - quickfix.UnsupportedMessageType: null(Websphere)

I developing something with QuickFixJ and I meet a strange situation. We have a stub to simulate the fix acceptor, locally on my environment is working I can send/receive messages we use a custom message type the quickfixj jar is regenerated based…
T. Lorand
  • 31
  • 5
0
votes
2 answers

How to test a QuickFIXJ application

I have implemented a QuickFIX/J application (the J stands for Java). Now I consider how to set up fixed test cases. I am a little bit familiar with JUnit but I don't know if it's the right one for that issue, because QuickFIX/J has callbacks…
mrbela
  • 4,477
  • 9
  • 44
  • 79
0
votes
1 answer

Why are resent messages discarded in QuickFIX?

I have a QuickFIX/J application running as acceptor. ResetOnLogon is N in the configuration. When the initiator is logged on, since the seq nums are different the initiator app sends the messages and I see those messages in the FIX log file. The…
xyzt
  • 1,201
  • 4
  • 18
  • 44
0
votes
1 answer

quickfixj Integration with External OMS

I am doing a development to integrate a non Java OMS system with QuickFIX/J to send buy/sell orders to multiple brokerage systems . I have written the belog logic to send the messages I have written this under main function which is in the same…
0
votes
0 answers

QuickFIX Position Report Resend Request

I am sending Position Report by using VeriFIX application, and it is working totally fine that I can interact with the 'acceptor'. However, I found that when 'Resend Request' is required, indeed it does resend the Position Report, the problem is…
A.Y
  • 1
  • 2
0
votes
1 answer

quickfixj logs have no newlines for windows notepad

I need to change the charset or add System.setProperty("line.separator", "\r\n"); so I added the above in the main function but that doesn't make newlines appear in the quickfixj log. Any ideas?
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
2 answers

quickfixj 35=AG message shows in session messages log but not fromAdmin

how do you catch lower level exceptions from quickfix which appear in the messages log but aren't caught by fromAdmin
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
1 answer

reconnect after explicitly sendign a logout

Does quickfixj try to reconnect on a session on which an explicit logout has been sent. I have asked about it and have been told that it does not but I want to confirm. What should be done for reconnection in such case? All possible solutions are…
h.i
  • 515
  • 1
  • 5
  • 16
0
votes
1 answer

quickfix/j NewOrderMultileg message get truncated

In my application, I am receiving a NewOrderMultiLeg message. The entire message is logged into the 'messages.log' file. But when I recevie the message into the onMessage(Message message, SessionID sessionID) method, I am getting only a part of the…
Bibin Zacharias
  • 159
  • 1
  • 2
  • 7
0
votes
1 answer

SocketInitiator getSession give session not at the same order as in the config file

When I try to get a sessionconfig by the index that exist in the file that contains the sessionConfig (in our case "InitiatorSettings.cfg") [default] FileStorePath=data FileLogPath=log HeartBtInt=30 ReconnectInterval=5 [session]…
Badis
  • 27
  • 4
0
votes
0 answers

Rebuilding QuickFIX/J with Ant

The User FAQ of QuickFIX/J describes the opportunity to rebuild the data dictionary of QuickFIX/J to customize the application. It is described in the FAQs tis way: You'll need ant installed. QF/J generates the source from the DDs in…
mrbela
  • 4,477
  • 9
  • 44
  • 79
0
votes
1 answer

What are the available open source acceptors for quickfix?

What are the available open source quickfix acceptors/servers/simulators which have MATCHING and EXECUTION option. If you any tool please give the link. I found few tools like fiximulator,quickfix-messenger and ect. But these tools don't have order…
FxMax
  • 472
  • 1
  • 5
  • 9
0
votes
3 answers

NoClassDefFoundError (org/logicalcobwebs/cglib/proxy/Callback) in QuickFIX/J application

I am writing a Java program with QuickFIX/J (version 1.6.0). Everything works fine as long as I only logged to files.. Now, I wanted to add JDBC logging: SessionSettings sessionSettings = null; try { sessionSettings = new…
mrbela
  • 4,477
  • 9
  • 44
  • 79