|
From: Nik G. <nik...@gm...> - 2020-05-01 05:03:48
|
https://www.quickfixj.org/usermanual/2.1.0/usage/user_defined_fields.html or https://www.quickfixj.org/usermanual/2.1.0/usage/codegen.html Both of these pages are linked to from the initial user manual page. Please look there before expecting us to search for you. On Fri, 1 May 2020, 04:55 Fuad Azhar, <fua...@gm...> wrote: > QuickFIX/J Documentation: http://www.quickfixj.org/documentation/ > QuickFIX/J <http://www.quickfixj.org/documentation/QuickFIX/J> Support: > http://www.quickfixj.org/support/ > > > hi all, i have follow how add parameter in to admin for logon > if (message instanceof quickfix.fix44.Logon) { > try { > System.out.println(" Login " + SenderCompID + " " + > TargetCompID); > message.setString(quickfix.field.SenderCompID.FIELD, > SenderCompID); > message.setString(quickfix.field.TargetCompID.FIELD, > TargetCompID); > message.setString(quickfix.field.Password.FIELD, > TargetCompID); > message.setString(quickfix.field.EncryptMethod.FIELD, > EncryptMethod); > > message.setString(quickfix.field.OZExternalFIXSpecVersion.FIELD, > OZExternalFIXSpecVersion); > System.out.println(" Logon " + message.toString()); > } > but when i want add OZExternalFIXSpecVersion i got error i must create the > class my question is how to add new class for field ? or any idea for add > this in initiator.config ? > > i also have add OZExternalFIXSpecVersion in my fix44.xml dictionary > best regards, > > Fuad > _______________________________________________ > Quickfixj-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfixj-users > |