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
13
votes
2 answers

How to send FIX message with QuickFIX/J

I need a simple example of how to initialize a session and send one FIX message. I have this initial code: SessionSettings settings = new SessionSettings( new FileInputStream("fix.cfg")); Application application = new…
user3756506
  • 431
  • 1
  • 3
  • 12
13
votes
3 answers

Difference between "group" and "component" in QuickFIX/J

I am new to the FIX world. I am writing an application processing FIX messages in Java and for that I am using QuickFIX/J. I have downloaded the DataDictionary from the homepage (http://quickfixengine.org/). I am using the version 4.4. In the…
mrbela
  • 4,477
  • 9
  • 44
  • 79
8
votes
1 answer

QuickFIX/J CA Certificate Validation

I have an application written using QuickFIX/J to connect with Bloomberg Server. Recently Bloomberg added CA certificate validation to their servers and they provide additional CA certificate file for handshaking. My application connected using SSL…
Lasitha Benaragama
  • 2,201
  • 2
  • 27
  • 43
8
votes
3 answers

Maven repository for QuickFIX/J library

I am using QuickFIX/J in the newest version (1.6.0) and want you to ask if you know any Maven repositories to integrate in my pom file? I could manually add the jar files to my local repository but maybe there is a nicer and quicker way.
mrbela
  • 4,477
  • 9
  • 44
  • 79
6
votes
3 answers

What causes the "Disconnecting: Encountered END_OF_STREAM" session message in QuickFIX/J?

I am using QuickFIX/J version 1.6.4 within Apache Camel 2.17.0 and I get the session message Disconnecting: Encountered END_OF_STREAM. It is not an error, but in my case it leads to an unintentional Logoff. What circumstances can lead to this…
Yannick
  • 663
  • 1
  • 10
  • 33
6
votes
1 answer

QuickFIX/J rotate .messages.log

Except for that post, I can't find anything on the web that is a good answer to that question. Is there any way to rotate log files with QuickFIX/J ? I am using Log4j to rotate my log files, but I was not able to rotate the QuickFIX messages. Thanks…
justinlevol
  • 1,101
  • 2
  • 12
  • 19
6
votes
1 answer

QuickFIX/J Error value out of range for this tag

I've implemented a Java program that uses QuickFIX/J (version 1.6.0). It gets a FIX message (execution report) from the counterparty with the repeating group NoPartyIDs (Tag 453) with following the values (Tag 453) NoPartyIDs = 4 (Tag 447)…
mrbela
  • 4,477
  • 9
  • 44
  • 79
6
votes
1 answer

how to logout fix session?

I'm using quickfixj. I have a custom message like "EndTrade", when I got that message, I want to end fix session? How can I do that? I have not find any way to do so. It is not allowing me to use new Session().logout().
Muneeb Nasir
  • 2,414
  • 4
  • 31
  • 54
5
votes
2 answers

QuickFIX/J mixing two different versions

I am writing an application that uses QuickFIX/J as FIX framework. My counterpart sends me an ExecutionReport message of FIX version 4.4 But only some fields (the Parties component) are of version 5.0 Now I am trying to implement that I can read…
mrbela
  • 4,477
  • 9
  • 44
  • 79
5
votes
1 answer

Getting Session Properties (Username and Password) for QuickFix/n

I have put my user name and password on the FIX configuration file. So I must think I should be able to get User name and passwords from some internal variable like session variable or SessionSetting variable or session.SessionDataDictionary or some…
auto9817
  • 153
  • 3
  • 12
5
votes
1 answer

QuickFIX/n - Initiator repeatedly throw errors during Logon phase

I am using the trade client application on this link below to make connection between one of my VPS server and brokers server. http://www.quickfixn.org/tutorial/example-applications . After one week of struggle, I been able to make a connection to…
auto9817
  • 153
  • 3
  • 12
5
votes
2 answers

Weird behavior of Quickfix/j after "Sent test request TEST" happens

I'm using Quickfix/J to receive the message but "Sent test request TEST" happen. The log file (FIX.4.2-A-B.event.log)shows that: 23:19:05: Sent test request TEST 23:19:32: Disconnecting: Timed out waiting for heartbeat 23:19:33: Initiated…
macemers
  • 2,194
  • 6
  • 38
  • 55
5
votes
2 answers

How does one dynamically agree on a SenderCompID and TargetCompID in quickfixj?

Suppose that I'm running a web-based exchange and a new customer signs up. I give that customer a new CompID and now I want to add that CompID to my acceptor. Do I have to restart my acceptor or can that be done dynamically? It doesn't seem very…
Kiril
  • 39,672
  • 31
  • 167
  • 226
4
votes
1 answer

How to manage and reload multiple QuickFIX/J sessions independently?

I can configure multiple sessions in a single QuickFIX/J settings file and then start them all with a single SocketInitiator. But I would like to be able to modify the configuration of one or more sessions and then restart just those sessions…
KevinS
  • 7,715
  • 4
  • 38
  • 56
4
votes
1 answer

How to configure log4j2.xml for QuickFIX/J logs?

I'm using QuickFIX/J version 2.1.1 and log4j2 on my project. Quickfix logs to path FileLogPath specified and the log file not rolling by daily. How can I configure the log file stored in daily with log4j2.xml configuration?
Asisch
  • 41
  • 2
1
2 3
21 22