RE: [Quickfix-developers] "Invalid tag number" error for proprietary field
Brought to you by:
orenmnero
From: Yihu F. <Yih...@re...> - 2005-02-16 15:06:58
|
Hi, =20 If you always want to pass through user defined fields without using data dictionary for validation, change the line 154 of DataDictionary.cpp of QuickFIX 1.9.4 as following =20 154c154 < if ( m_beginString.getValue().length() && field.getField() < FIELD::UserMin) --- > if ( m_beginString.getValue().length() ) =20 Regards, =20 -Yihu =20 =20 =20 _____ =20 From: qui...@li... [mailto:qui...@li...] On Behalf Of Dave Linaker Sent: Wednesday, February 16, 2005 9:29 AM To: 'Alvin Wang'; qui...@li... Subject: RE: [Quickfix-developers] "Invalid tag number" error for proprietary field =20 Hi Alvin, =20 You need to add the user defined tag (i.e.6602) to your DataDictionary. Remember to add the definition for field and message. =20 See http://www.quickfixengine.org/quickfix/doc/html/xmlschema.html =20 Kind regards =20 =20 Dave -----Original Message----- From: qui...@li... [mailto:qui...@li...] On Behalf Of Alvin Wang Sent: 16 February 2005 14:22 To: qui...@li... Subject: [Quickfix-developers] "Invalid tag number" error for proprietary field Hi All, A incoming FIX msg from counterparty contains their proprietary tag (6602). QF rejected the message as below:=20 (Message 107 Rejected: Invalid tag number:6602) I use dictionary for repeating group. I wonder if this is related to the rejection? How to fix the problem? Thanks a lot! Alvin =09 =09 ********************************************************************** This e-mail message is intended solely for the use of the addressee. The message may contain information that is privileged and confidential. Disclosure to anyone other than the intended recipient is prohibited. If you are not the intended recipient, please do not disseminate, distribute or copy this communication, by e-mail or otherwise. Instead, please notify us immediately by return e-mail (including the original message with your reply) and then delete and discard all copies of the message. We have taken precautions to minimize the risk of transmitting software viruses but nevertheless advise you to carry out your own virus checks on any attachment to this message. We accept no liability for any loss or damage caused by software viruses. **********************************************************************=20 ----------------------------------------------------------------- Visit our Internet site at http://www.reuters.com Get closer to the financial markets with Reuters Messaging - for more information and to register, visit http://www.reuters.com/messaging Any views expressed in this message are those of the individual sender, except where the sender specifically states them to be the views of Reuters Ltd. |