I am developing on quickfixj
Trying to set the SenderSubID Field in the header of QuoteRequest message.
I use the following code:
QuoteRequest msg = new QuoteRequest();
msg.getHeader().set(new SenderSubID(myid));
Is this the best way or is there any better way to do this? Thanks
Refer to this online documentation for QuickfixJ. Will save you a lot of trouble.
The Header class which you return from getHeader() doesn't support a set function. But has 2 set functons which can work for you.
More flexible, but you may add in fields which aren't supported in the FIX standards and which would get rejected from the client at a later stage.
Safest way to create a message, would generate errors the moment you try to add a non existent field in a message. But this mayn't be a foolproof method, if you are playing around with xml file which QuickfixJ uses to check against fields present/not present in a message.