Thread: [Quickfix-users] Does Logon Having blank tags pose a problem
Brought to you by:
orenmnero
From: <Pra...@ba...> - 2010-04-13 21:39:08
|
I am trying to connect to a squickfix server using 1.12.4 version of quickfix(FIX 4.4). I am told that blank tags would cause a fix message to get rejected. Since Logon is created as part of the Initiator process(Admittedly I do see the message before it goes out via toAdmin), I was wondering if this is infact trrue? And wether there is an elegant way to remove the blank tags(in this case fix tag 96). Thanks, -Pradyot Dhulipala _______________________________________________ This e-mail may contain information that is confidential, privileged or otherwise protected from disclosure. If you are not an intended recipient of this e-mail, do not duplicate or redistribute it by any means. Please delete it and any attachments and notify the sender that you have received it in error. Unless specifically indicated, this e-mail is not an offer to buy or sell or a solicitation to buy or sell any securities, investment products or other financial product or service, an official confirmation of any transaction, or an official statement of Barclays. Any views or opinions presented are solely those of the author and do not necessarily represent those of Barclays. This e-mail is subject to terms available at the following link: www.barcap.com/emaildisclaimer. By messaging with Barclays you consent to the foregoing. Barclays Capital is the investment banking division of Barclays Bank PLC, a company registered in England (number 1026167) with its registered office at 1 Churchill Place, London, E14 5HP. This email may relate to or be sent from other members of the Barclays Group. _______________________________________________ |
From: Kenny S. <ks...@co...> - 2010-04-13 22:43:49
|
Why would your field be blank? you can: msg.removeField( FIX::FIELD::RawData ); -- Kenny Stone Connamara Systems, LLC On Tue, Apr 13, 2010 at 4:38 PM, <Pra...@ba...>wrote: > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > I am trying to connect to a squickfix server using 1.12.4 version of > quickfix(FIX 4.4). I am told that blank tags would cause a fix message to > get rejected. > Since Logon is created as part of the Initiator process(Admittedly I do see > the message before it goes out via toAdmin), I was wondering if this is > infact trrue? > And wether there is an elegant way to remove the blank tags(in this case > fix tag 96). > > > > Thanks, > -Pradyot Dhulipala > > > > _______________________________________________ > > > > This e-mail may contain information that is confidential, privileged or > otherwise protected from disclosure. If you are not an intended recipient of > this e-mail, do not duplicate or redistribute it by any means. Please delete > it and any attachments and notify the sender that you have received it in > error. Unless specifically indicated, this e-mail is not an offer to buy or > sell or a solicitation to buy or sell any securities, investment products or > other financial product or service, an official confirmation of any > transaction, or an official statement of Barclays. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Barclays. This e-mail is subject to terms available at the > following link: www.barcap.com/emaildisclaimer. By messaging with Barclays > you consent to the foregoing. Barclays Capital is the investment banking > division of Barclays Bank PLC, a company registered in England (number > 1026167) with its registered office at 1 Churchill Place, London, E14 5HP. > This email may relate to or be sent from other members of the Barclays > Group.** > > _______________________________________________ > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > > |
From: Grant B. <gbi...@co...> - 2010-04-13 22:44:35
|
toAdmin() allows you to alter the message before it is sent out. So inside that callback you can remove tag 96, set it to some value, or even insert some other fields if you wish. -Grant On Tue, Apr 13, 2010 at 4:38 PM, <Pra...@ba...> wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > I am trying to connect to a squickfix server using 1.12.4 version of quickfix(FIX 4.4). I am told that blank tags would cause a fix message to get rejected. > Since Logon is created as part of the Initiator process(Admittedly I do see the message before it goes out via toAdmin), I was wondering if this is infact trrue? > And wether there is an elegant way to remove the blank tags(in this case fix tag 96). > > > > Thanks, > -Pradyot Dhulipala > > > > _______________________________________________ > > > > This e-mail may contain information that is confidential, privileged or otherwise protected from disclosure. If you are not an intended recipient of this e-mail, do not duplicate or redistribute it by any means. Please delete it and any attachments and notify the sender that you have received it in error. Unless specifically indicated, this e-mail is not an offer to buy or sell or a solicitation to buy or sell any securities, investment products or other financial product or service, an official confirmation of any transaction, or an official statement of Barclays. Any views or opinions presented are solely those of the author and do not necessarily represent those of Barclays. This e-mail is subject to terms available at the following link: www.barcap.com/emaildisclaimer. By messaging with Barclays you consent to the foregoing. Barclays Capital is the investment banking division of Barclays Bank PLC, a company registered in England (number 1026167) with its registered office at 1 Churchill Place, London, E14 5HP. This email may relate to or be sent from other members of the Barclays Group. > > _______________________________________________ > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > > |