quickfixj icon indicating copy to clipboard operation
quickfixj copied to clipboard

QuickFIX/J is a full featured messaging engine for the FIX protocol. - This is the official project repository.

Results 144 quickfixj issues
Sort by recently updated
recently updated
newest added
trafficstars

Follow up to #360 where an incoming connection is rejected via a Logout message when the session is not enabled. It should also be possible to just close the incoming...

Follow-up to #258 where `getVersion()` was not changed for a minor QFJ release. But with 3.0.0 we should change this.

bug

E.g. there is https://github.com/quickfix-j/quickfixj/blob/895224da1a05055bc99d936920d1e1ed7edc9935/quickfixj-core/src/main/java/quickfix/SessionSettings.java#L368-L374 but `FieldConvertError` is never thrown but wrapped into `ConfigError`. Then there is https://github.com/quickfix-j/quickfixj/blob/895224da1a05055bc99d936920d1e1ed7edc9935/quickfixj-core/src/main/java/quickfix/SessionSettings.java#L306-L312 where `ConfigError` could be thrown by `getString`. I think `getBool` (and other methods...

bug

The current data dictionaries for FIX 4.4 upwards lack the enumerated values of 661/AllocAcctIDSource: ``` ``` According to the FIXimate the values shall be provided as the same ones as...

Good first issue

In the case of: https://github.com/quickfix-j/quickfixj/blob/4d5401979b1046b68e2196aec37f56a6a3c46416/quickfixj-core/src/test/java/quickfix/MessageTest.java#L1784 If you have the following: `453=2|448=A|20000=MISC|448=B|` then it is pretty obvious that 20000 should be on the repeating group But if you have `453=2|448=A|448=B|20000=MISC` then...

![image](https://user-images.githubusercontent.com/35864199/102467130-e5ccc980-408a-11eb-8865-6e8263034f4b.png) ”generateSequenceResetIfNeeded“method:What I understand is that when the retrieved messages to be processed are less than the endseqno, for example, messages from 2 to 10 are expected to be sent,...

I'm always frustrated when quickfixj.org is offline. We should put the content on github pages. Edit: we should also check the documentation under https://github.com/quickfix-j/quickfixj/tree/master/quickfixj-core/src/main/doc/usermanual whether it is still relevant and/or...

The FIX Orchestra project includes a utility to generate QFJ compatible dictionaries from an Orchestra Repo https://github.com/FIXTradingCommunity/fix-orchestra The Orchestra model and the QuickFIX model are inconsistent in the way that...

enhancement

I've met with NPE inside quickfix on initialization. I've seen it in v2.0.0, but apt code in master is still same: https://github.com/quickfix-j/quickfixj/blob/f09e6d63416549a928893d06974aa643935e8919/quickfixj-core/src/main/java/quickfix/DefaultMessageFactory.java#L120 Root cause: `Thread.getContextClassLoader()` is not guaranteed to be...

There's no straightforward way to tell a session "Logout and then disconnect" If you call 'disconnect()' we just disconnect - we don't try to send a logout let alone wait...