RE: [Quickfix-developers] MarketDataIncrementalRefresh message
Brought to you by:
orenmnero
|
From: Scott R. <sri...@fo...> - 2006-03-01 13:34:19
|
Thanks! I didn't realize I was using the wrong NoMDEntries class. It works fine now. =20 -Scott =20 ________________________________ From: qui...@li... [mailto:qui...@li...] On Behalf Of Steve Bate Sent: Wednesday, March 01, 2006 8:10 AM To: qui...@li... Subject: RE: [Quickfix-developers] MarketDataIncrementalRefresh message =20 Hi Scott, =20 The previous message refered to MarketDataIncrementalRefresh rather than the MarketDataSnapshotFullRefresh message. I've checked both QuickFIX/J and the QuickFIX JNI versions of the messages and they both have a definition for MarketDataIncrementalRefresh.NoMDEntries.getMDEntryID. The MDEntryID field is not valid for the MarketDataSnapshotFullRefresh. =20 Regards, =20 Steve Bate Smart Trade Technologies Phone: +33 4 42 90 03 97 http://www.smart-trade.net/ =20 =09 ________________________________ From: Scott Riopelle [mailto:sri...@fo...]=20 Sent: Wednesday, March 01, 2006 1:53 PM To: Steve Bate; qui...@li... Subject: RE: [Quickfix-developers] MarketDataIncrementalRefresh message Are you certain this functionality exists for the Java version of quickfix? My compiler returns errors on both of those attempted calls, as well as attempts to call NoMDEntries.get(MDUpdateAction) and NoMDEntries.get(MDEntryID) "cannot find symbol; symbol : method getMDUpdateAction(), location: class quickfix.fix42.MarketDataSnapshotFullRefresh.NoMDEntries at line 197 (197:22) " "cannot find symbol; symbol : method getEntryID(), location: class quickfix.fix42.MarketDataSnapshotFullRefresh.NoMDEntries at line 208 (208:30)" "cannot find symbol; symbol : method get(quickfix.field.MDUpdateAction), location: class quickfix.fix42.MarketDataSnapshotFullRefresh.NoMDEntries at line 196 (196:22)" "cannot find symbol; symbol : method get(quickfix.field.MDEntryID), location: class quickfix.fix42.MarketDataSnapshotFullRefresh.NoMDEntries at line 209 (209:30)" Perhaps I have out of date files? Or, I'm looking in the wrong place? =20 Any help would be appreciated, This has been a source of much frustration for me. -Scott =20 =20 =20 =20 (Steve, sorry for the reply just to you before) =09 ________________________________ From: qui...@li... [mailto:qui...@li...] On Behalf Of Steve Bate Sent: Wednesday, March 01, 2006 1:35 AM To: qui...@li... Subject: RE: [Quickfix-developers] MarketDataIncrementalRefresh message =20 Hi Scott, =20 There are getMDEntryID() and getMDUpdateAction() methods on NoMDEntries (the group object).=20 Is that what you want? =20 Steve =20 =20 =09 ________________________________ From: qui...@li... [mailto:qui...@li...] On Behalf Of Scott Riopelle Sent: Wednesday, March 01, 2006 4:17 AM To: qui...@li... Subject: [Quickfix-developers] MarketDataIncrementalRefresh message I am new to FIX, and using the java implementation of quick fix to write an app to handle market data and order managing. =20 I have a question about the MarketDataIncrmentalRefresh message class. I'm extracting groups from this message, and can't seem to find the appropriate calls to access two of the fields. MDEntryID (field 278) and MDUpdateAction (field 279) do not seem to have accessors within the Java implementation. =20 Do this exist under a different name, and if not, is there a good way to access the information in these fields? =20 Thanks in Advance, -Scott =20 |