RE: [Quickfix-developers] Archive of Developer Support
Brought to you by:
orenmnero
From: Chuck H. <zzc...@xc...> - 2003-03-07 23:44:40
|
I ran into this problem too. It looks like SorceForge has changed the = location of the archives. They now are at: =20 http://sourceforge.net/mailarchive/forum.php?forum_id=3D103 =20 Hope that helps - Chuck -----Original Message----- From: Min Tang [mailto:mi...@op...] Sent: Saturday, March 01, 2003 10:46 AM To: qui...@li... Subject: [Quickfix-developers] Archive of Developer Support I tried to read all archive mails to avoid asking duplicated questions, = but seems the link doesn't work. = http://www.geocrawler.com/redir-sf.php3?list=3Dquickfix-developers =20 I can use FileStoreFactory but failed to use MySQLStoreFactory. The code = is the same: =20 Application application =3D new ExecApplication(); Settings settings =3D new Settings(new = FileInputStream(args[0])); MessageStoreFactory messageStoreFactory =3D //new FileStoreFactory(settings); new MySQLStoreFactory(settings); LogFactory logFactory =3D new ScreenLogFactory(true, true, = true); MessageFactory messageFactory =3D new = DefaultMessageFactory(); =20 acceptor =3D new SocketAcceptor (application, messageStoreFactory, settings, = logFactory, messageFactory); acceptor.start(); =20 The error message is (I have updated all quickfix files and re-built the = jni dll file): Exception in thread "main" java.lang.UnsatisfiedLinkError: = create at org.quickfix.MySQLStoreFactory.create(Native Method) at = org.quickfix.MySQLStoreFactory.<init>(MySQLStoreFactory.java:59) at com.ftms.fix.executor.Executor.main(Executor.java:23) =20 =20 Config file: =20 [DEFAULT] SocketAcceptPort=3D2088 ConnectionType=3Dacceptor SenderCompID=3DML =20 [SESSION] BeginString=3DFIX.4.2 TargetCompID=3DTA StartTime=3D00:00:01 EndTime=3D23:59:59 ReconnectInterval=3D30 ValidateFieldsOutOfOrder=3DN =20 DataDictionary=3Dc:\itms\property\FIX42.xml =20 ##FileStorePath=3Dc:\itms\log MySQLStoreDatabase=3Dquickfix=20 MySQLStoreUser=3Dsystem MySQLStorePassword=3Dray MySQLStoreHost=3Dtradviser-3 MySQLStorePort=3D3306 |