|
From: Joerg T. <Joe...@ma...> - 2007-04-26 09:00:29
|
On 04/25/07 20:45, Toli Kuznets wrote: > QuickFIX/J Documentation: http://www.quickfixj.org/documentation/ > QuickFIX/J Support: http://www.quickfixj.org/support/ > Also, you may want to upgrade to 1.1.0 if that's possible, since it > gives you much more helpful error messages when you have misconfigured > repeating groups. As a side note: According to my experience the move to QF/J 1.1.0 should be possible without any change if you adapt any code using the LogFactory interface before the switch: Just implement the extra method required by the 1.1.0 API (to match the changes in native QF) as a dummy method: /** Dummy implementation required by the LogFactory interface. * Not used by QuickFIX/J. * * @see quickfix.LogFactory#create() */ public Log create() { return new FixLog( new SessionID() ); } Cheers, Jörg -- Joerg Thoennes http://www.macd.com Tel.: +49 (0)241 44597-24 Macdonald Associates GmbH Geschäftsführer: Roger Macdonald Lothringer Str. 52, D-52070 Aachen Amtsgericht Aachen, HRB 8151, Ust.-Id DE813021663 |