FIX Query Language

There is a similar language implemented in HermesJMS. We should investigate it.

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. Sep 28, 2006

    colincrist says:

    I used JamSel to implement the SQL-like functionality. The selector is really a ...

    I used JamSel to implement the SQL-like functionality. The selector is really a JMS selector but is quite effective on a FIX message. There is some good documentation

  2. Sep 29, 2006

    Steve Bate says:

    I've been looking at JamSel and it's very interesting. I assume you wrote some t...

    I've been looking at JamSel and it's very interesting. I assume you wrote some type of value adapter for QFJ messages. I'd like to borrow that if use JamSel in QFJ.

  3. Oct 05, 2006

    Colin Crist says:

    There is a simple interface to implement that calls you back to get the value o...

    There is a simple interface to implement that calls you back to get the value of specific fields:

    FIXMessageValueProvider.java

    FIXMessage is just an interface that I wrap your QuickFIX messages in to minimise coupling.

    You also need this to deal with identifiers such as $MsgType

    FIXIdentifierExtension.java

    It's that simple....