Thread: [Quickfix-developers] error in included SQL script (Page 2)
Brought to you by:
orenmnero
From: Andrew M. <an...@nm...> - 2006-04-12 18:26:29
|
Looks like messages_log_table.sql is creating the wrong table name. C:\quickfix\src\sql\mysql>more messages_log_table.sql USE quickfix; DROP TABLE IF EXISTS messages_log; CREATE TABLE incoming_log ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, time DATETIME NOT NULL, beginstring CHAR(8) NOT NULL, sendercompid VARCHAR(64) NOT NULL, targetcompid VARCHAR(64) NOT NULL, session_qualifier VARCHAR(64) NOT NULL, text BLOB NOT NULL, PRIMARY KEY (id) ); |
From: David P. <dpa...@pd...> - 2006-06-14 20:35:52
|
I am trying to get quick fix working with Microsoft SQL Server 2005 and Visual studio 2005. This package does not seem to have ntwdblib.lib with it. Nor does it have stlfront.h or sqldb.h. I found the following information in the Visual Studio 2005 documentation. It seems to indicate that support may have run out for the DB-Library used by quick fix. Do you know if I am correct on this? Do you have any ideas on how I should proceed? (Note I searched the mailing lists and FAQ's for info but could find nothing) Also joined the developer mailing list, but did not see how to post a message there. Here is the documentation fro VS2005: DB-Library is a Call Level Interface that allows C applications to access MicrosoftR SQL ServerT 2000. DB-Library was the original application programming interface (API) that allowed applications to access SQL Server, and remains specific to SQL Server. The DB-Library API has not been enhanced beyond the level of SQL Server version 6.5. All DB-Library applications can work with SQL Server 2000, but only as 6.5 level clients. Features introduced in SQL Server 2000 and SQL Server version 7.0 are not supported for DB-Library applications. SQL Server 2000 does not include a programming environment for DB-Library for Microsoft Visual BasicR. Existing DB-Library for Visual Basic applications can run against SQL Server 2000, but must be maintained using the software development tools from SQL Server version 6.5. All development of new Visual Basic applications that access SQL Server should use the Visual Basic data APIs such as Microsoft ActiveXR Data Objects (ADO) and Remote Data Objects (RDO). While the DB-Library API is still supported in Microsoft SQL Server 2000, no future versions of SQL Server will include the files needed to do programming work on applications that use this API. Connections from existing applications written using DB-Library will still be supported in the next version of SQL Server, but this support will also be dropped in a future release. When writing new applications, avoid using DB-Library. When modifying existing applications, you are strongly encouraged to remove dependencies on DB-Library. Instead of DB-Library, you can use ADO, OLE DB, or ODBC to access data in SQL Server. Best David P |
From: Paula Da C. <pd...@gm...> - 2006-11-20 22:28:44
|
Hi, I need to know if the quickfix-bin-vs8-1.12.4.zip (*QuickFIX 1.12.4*<http://www.quickfixengine.org/download.html>)and the *QuickFIX/J 1.0.4* <http://www.quickfixengine.org/download.html> are compatible with de Java 1_5_0_09 version, because I' m having problems with the SessionSettings when I'm creating a new SocketInitiator to manage the connection. I'm having multiples sessions, I'm using webstart in my application. The error that i'm getting is "error during session initialization" my session file have this data: [default] ConnectionType=initiator SenderCompID=VALUE FileStorePath=C: [session] BeginString=FIX.4.4 TargetCompID=VALUE StartTime=00:00:00 EndTime=00:00:00 HeartBtInt=30 SocketConnectHost=200.158.7.15 SocketConnectPort=5001 DataDictionary=C:FIX44.xml CheckLatency=N ReconnectTries=3 ReconnectAuto=Y ReconnectInterval=5 Regards, Paula. |
From: Eranga S. <pe...@ri...> - 2007-06-22 13:18:38
|
Hi, I want to run the quickfix 1.12.4 on windows . I took a fresh machine and installed java 1.5 and msxml3 there. Then I ran a my program there to test JNI. ( Pl look the code below ) . Then I am got the following error. C:\fix_test\test_JNI\bin>java -Djava.library.path=../lib JNITest Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\fix_test\test_JNI\ lib\quickfix_jni.dll: This application has failed to start because the applicati on configuration is incorrect. Reinstalling the application may fix this problem at java.lang.ClassLoader$NativeLibrary.load(Native Method) at java.lang.ClassLoader.loadLibrary0(Unknown Source) at java.lang.ClassLoader.loadLibrary(Unknown Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at java.lang.System.loadLibrary(Unknown Source) at JNITest.<clinit>(JNITest.java:8) My Djava.library.path was correct. All other classpaths were ok. I think quickifix depends on some other .dll on windows plat form. I can't figure out what are they. Because when I install the Visual Studio 2005 IDE. It start working. I am wonder what is this hidden dependency. I build the quickfix using VS2005 . public class JNITest{ static{ System.loadLibrary("quickfix_jni"); } public static void main(String args[]) throws Exception{ System.out.println("Start the JNI Compatibility Test Program...."); Message m = new Message(); SessionSettings settings = new SessionSettings(new FileInputStream("../test.cfg")); MessageStoreFactory messageStoreFactory = new FileStoreFactory(settings); LogFactory logFactory = new FileLogFactory(settings); MessageFactory messageFactory = new DefaultMessageFactory(); System.out.println("Successfully Loaded the JNI...."); } } Regards, Eranga |
From: Djalma R. d. S. F. <drs...@gm...> - 2007-06-22 15:06:05
|
Hi Eranga, Maybe, what you need to do is the installation of Visual C++ runtime DLLs. If you installed Visual Studio 2005 SP1 recently, make sure you have installed the correct package when you deploy your application, a binary compiled with SP1 depends on a slightly different VC runtime version, its abasence generates this silly error - application configuration is incorrect. Djalma On 6/22/07, Eranga Samararathna <pe...@ri...> wrote: > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: > http://www.quickfixengine.org/services.html > > > > > > > Hi, > > > > I want to run the quickfix 1.12.4 on windows . I took a fresh machine and > installed java 1.5 and msxml3 there. Then I ran a my program there to test > JNI. ( Pl look the code below ) . Then I am got the following error. > > > > C:\fix_test\test_JNI\bin>java -Djava.library.path=../lib JNITest > > Exception in thread "main" java.lang.UnsatisfiedLinkError: > C:\fix_test\test_JNI\ > > lib\quickfix_jni.dll: This application has failed to start because the > applicati > > on configuration is incorrect. Reinstalling the application may fix this > problem > > > > at java.lang.ClassLoader$NativeLibrary.load(Native > Method) > > at java.lang.ClassLoader.loadLibrary0(Unknown > Source) > > at java.lang.ClassLoader.loadLibrary(Unknown > Source) > > at java.lang.Runtime.loadLibrary0(Unknown Source) > > at java.lang.System.loadLibrary(Unknown Source) > > at JNITest.<clinit>(JNITest.java:8) > > > > My Djava.library.path was correct. All other classpaths were ok. I think > quickifix depends on some other .dll on windows plat form. I can't figure > out what are they. Because when I install the Visual Studio 2005 IDE. It > start working. I am wonder what is this hidden dependency. > > > > I build the quickfix using VS2005 . > > > > public class JNITest{ > > > > static{ > > System.loadLibrary("quickfix_jni"); > > } > > > > > > > > public static void main(String args[]) throws Exception{ > > > > System.out.println("Start the JNI Compatibility Test > Program...."); > > > > Message m = new Message(); > > SessionSettings settings = new SessionSettings(new > FileInputStream("../test.cfg")); > > MessageStoreFactory messageStoreFactory = new > FileStoreFactory(settings); > > LogFactory logFactory = new FileLogFactory(settings); > > MessageFactory messageFactory = new DefaultMessageFactory(); > > > > > > System.out.println("Successfully Loaded the JNI...."); > > } > > } > > > > Regards, > > > > Eranga > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > > |
From: Craig H. <fir...@ho...> - 2008-01-09 23:30:44
|
Hi, Any Delphi Develpers out there? Im real strong in TCP/IP, but just learning= FIX. Im wanting to put forex orders onto Hotspot.. =20 Looking for anyone with common interests.. =20 =20 _________________________________________________________________ Make distant family not so distant with Windows Vista=AE + Windows Live=99. http://www.microsoft.com/windows/digitallife/keepintouch.mspx?ocid=3DTXT_TA= GLM_CPC_VideoChat_distantfamily_012008= |
From: Hozaifa A. A. <hoz...@ve...> - 2008-02-29 15:17:16
|
Hi, I am also trying to connect to Hotspot but i am unable to connect to it .... please someone respond if they have connected to Hotspot... thanks regards, Hozaifa Akber Ali Craig Hammon wrote: > > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > > Hi, > Any Delphi Develpers out there? Im real strong in TCP/IP, but just > learning FIX. Im wanting to put forex orders onto Hotspot.. > > Looking for anyone with common interests.. > > > _________________________________________________________________ > Make distant family not so distant with Windows Vista® + Windows Live™. > http://www.microsoft.com/windows/digitallife/keepintouch.mspx?ocid=TXT_TAGLM_CPC_VideoChat_distantfamily_012008 > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > -- View this message in context: http://www.nabble.com/%28no-subject%29-tp14724372p15760661.html Sent from the QuickFIX - Dev mailing list archive at Nabble.com. |
From: <phi...@ta...> - 2008-01-21 17:23:07
|
Hi, =0AI;ve been using quickfix for a few years, in quite a large scale ent= erprise application. Server is a .NET Fix Server using the latest 1.12.4 re= lease, running in .NET 2.0. Generally performance has been OK, however whil= st scaling up I have been having many more issues. I was wondering if any o= ne else had similar issues and posssible solutions. =0A=0A1) .NET Faults, M= S Runtine "out of memory dialog". Since adding extra load I often see (appr= ox 1 month) the system die with a General protection fault which results in= a "MS C Runtime dialog appearing". Checking DrWatson logs shows this is ha= ppening generally in around the .NET interop libraries. Not a gracefull way= to die. =0A2) Database Errors. I currently use ODBC interface to MS Sql Se= rver Database. I often see failures to insert in the "Message" table due to= Duplicate KEY. This then creates duplicate messages to the client. This ca= n happen about once every 2 - 3 months. =0A3) I'm not particular happy usin= g a ODBC interface with MS Sql Server, would have prefered a native ADO imp= lementation. I'm thinking of moving over to MySQLServer, however I wonderin= g if anyone had done any performance comparisons between QF using MySQL and= MS SQL Server via ODBC. =0A4) Read in previous article about a pure .NET i= mplementation, trying to get support. I think thats a great idea. .NET is b= ecoming the langauge of choice in many Financial institutions. =0A5) Finnal= ly, Oren are we due another release? I noticed reading through the list tha= t there has been a quite a few issues raised/fixed. Would be nice to know i= f any of my problems have been fixed in the current tree. Even a roadmap wo= uld help with my planning. =0AAny info will be much appreciated. =0ACheers = =0APhil.=0A=0A=0A ____________________________________________________= ______=0ASent from Yahoo! Mail - a smarter inbox http://uk.mail.yahoo.com= =0A |
From: Mark S. <ma...@at...> - 2009-11-16 17:41:01
|
I am a quickfix developer who wrote some quickfix applications. We have an application which is both a server and a client written in C#. It is a client of the vendor but also a server for another client. The client communicating with the server/client written in C++. Once in a while the communication is broken. Our C# server stops responding to our C++ client and does not send heartbeat or even respond to a TestRequest that the client sends. As result our client disconnects from the session and repeatedly sends a logon message to the server. The C# server keeps disconnecting the client believing that the original session is still in progress and the client get a socket reset. This goes on until we restart both. Has anyone seen anything like that before? Did anyone try running a application that is both server and client? Could you please point me in the right direction? |
From: marksasson <ma...@at...> - 2009-11-17 18:28:06
|
I got the following response via email: From: Blabos de Blebe [mailto:bl...@gm...] Sent: Tuesday, November 17, 2009 5:02 AM To: Mark Sasson Subject: Re: [Quickfix-developers] (no subject) Hi, Here, we have an application that is a client and a server simultaneously too, and works fine. Our approach was to create a FIX::Application for initiators and another to acceptors. Our application (written only in C++) connects clients and / or servers who do not have access (who knows what language they were written ...). Sometimes we have to analyze the sockets status, connections, etc,etc, but it works well. Some sockets communications have obscure pitfalls depending on which operation system you are. Blabos marksasson wrote: > > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > I am a quickfix developer who wrote some quickfix applications. We have an > application which is both a server and a client written in C#. It is a > client of the vendor but also a server for another client. The client > communicating with the server/client written in C++. Once in a while the > communication is broken. Our C# server stops responding to our C++ client > and does not send heartbeat or even respond to a TestRequest that the > client > sends. As result our client disconnects from the session and repeatedly > sends a logon message to the server. The C# server keeps disconnecting the > client believing that the original session is still in progress and the > client get a socket reset. This goes on until we restart both. > Has anyone seen anything like that before? Did anyone try running a > application that is both server and client? Could you please point me in > the > right direction? > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > -- View this message in context: http://old.nabble.com/%28no-subject%29-tp26376288p26395046.html Sent from the QuickFIX - Dev mailing list archive at Nabble.com. |
From: Marco N. <sg...@ya...> - 2011-06-23 07:29:22
|
http://www.leentjeshuidverzorging.nl/modules/Search/site.html |
From: Sameer S. <tog...@ya...> - 2012-01-21 06:08:36
|
http://jeremydahm.com/files/thumbnails/level2/7012/8536/9026/in9ex.php |
From: Sameer S. <tog...@ya...> - 2012-01-23 02:06:56
|
http://mwa3.com/donation/uploads/in9ex.php |
From: j j <htr...@ya...> - 2012-10-05 01:35:28
|
http://blog.stellenboschrugbyacademy.co.za/wp-content/plugins/google.html?fs=xss.jieg&mgo=te.gr&fhb=wuoc |
From: j j <htr...@ya...> - 2012-10-13 14:51:12
|
http://kondicionierius.lt/images/yahoo.html?ey=at.jdg&smsb=ghj.wrhg&mbn=sjgu |
From: Nick R. <Nic...@co...> - 2015-06-19 10:56:23
|
--- regards Nick (Sent from BlackBerry) --- This email may contain confidential information and is for the sole use of the intended recipient(s). Any unauthorized use or disclosure of this communication is prohibited. If you have received this email in error please delete it and notify sender. |
From: Alain D. <wb....@gm...> - 2016-11-08 04:29:44
|
Hello CQG team. I'm trying to send a Historical Market Data Request (UHV) ( http://help.cqg.com/continuum/default.htm#!Documents/historicalmarketdatarequestuhv.htm ) but I'm getting UnsupportedMessageType message. Here is my request and the response. Thanks is advanced, Adrian Chang <message> <header> <field number="8"><![CDATA[FIX.4.2]]></field> <field number="35"><![CDATA[UHV]]></field> <field number="34"><![CDATA[2]]></field> <field number="49"><![CDATA[RedFinFC]]></field> <field number="50"><![CDATA[TestFIXMarketData]]></field> <field number="52"><![CDATA[20161108-04:15:18.407]]></field> <field number="56"><![CDATA[CQG_Gateway]]></field> </header> <body> <field number="55"><![CDATA[D]]></field> <field number="262"><![CDATA[1478578518.41]]></field> <field number="30003"><![CDATA[ACD]]></field> <field number="30006"><![CDATA[50]]></field> </body> <trailer> </trailer> </message> *** fromApp *** <message> <header> <field number="8"><![CDATA[FIX.4.2]]></field> <field number="9"><![CDATA[128]]></field> <field number="35"><![CDATA[j]]></field> <field number="34"><![CDATA[2]]></field> <field number="49"><![CDATA[CQG_Gateway]]></field> <field number="52"><![CDATA[20161108-04:15:20.346]]></field> <field number="56"><![CDATA[RedFinFC]]></field> <field number="57"><![CDATA[TestFIXMarketData]]></field> </header> <body> <field number="45"><![CDATA[2]]></field> <field number="58"><![CDATA[UnsupportedMessageType]]></field> <field number="372"><![CDATA[UHV]]></field> <field number="380"><![CDATA[3]]></field> </body> <trailer> <field number="10"><![CDATA[133]]></field> </trailer> </message> |
From: Grant B. <gbi...@co...> - 2016-11-08 15:54:10
|
UHV is not a standard message type. I'm guessing it's something that CQG invented for their system. You need to add this message type and full definition to your DataDictionary xml file so that your engine will know what it is. See http://quickfixn.org/tutorial/custom-fields-groups-and-messages.html (This doc is for a different QF port, but the information is still applicable to this QF as well) On Mon, Nov 7, 2016 at 10:29 PM, Alain Daniel <wb....@gm...> wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/ > > > Hello CQG team. > > I'm trying to send a Historical Market Data Request (UHV) ( > http://help.cqg.com/continuum/default.htm#!Documents/ > historicalmarketdatarequestuhv.htm ) but I'm getting > UnsupportedMessageType message. Here is my request and the response. > > Thanks is advanced, Adrian Chang > > <message> > <header> > <field number="8"><![CDATA[FIX.4.2]]></field> > <field number="35"><![CDATA[UHV]]></field> > <field number="34"><![CDATA[2]]></field> > <field number="49"><![CDATA[RedFinFC]]></field> > <field number="50"><![CDATA[TestFIXMarketData]]></field> > <field number="52"><![CDATA[20161108-04:15:18.407]]></field> > <field number="56"><![CDATA[CQG_Gateway]]></field> > </header> > <body> > <field number="55"><![CDATA[D]]></field> > <field number="262"><![CDATA[1478578518.41]]></field> > <field number="30003"><![CDATA[ACD]]></field> > <field number="30006"><![CDATA[50]]></field> > </body> > <trailer> > </trailer> > </message> > > > *** fromApp *** > <message> > <header> > <field number="8"><![CDATA[FIX.4.2]]></field> > <field number="9"><![CDATA[128]]></field> > <field number="35"><![CDATA[j]]></field> > <field number="34"><![CDATA[2]]></field> > <field number="49"><![CDATA[CQG_Gateway]]></field> > <field number="52"><![CDATA[20161108-04:15:20.346]]></field> > <field number="56"><![CDATA[RedFinFC]]></field> > <field number="57"><![CDATA[TestFIXMarketData]]></field> > </header> > <body> > <field number="45"><![CDATA[2]]></field> > <field number="58"><![CDATA[UnsupportedMessageType]]></field> > <field number="372"><![CDATA[UHV]]></field> > <field number="380"><![CDATA[3]]></field> > </body> > <trailer> > <field number="10"><![CDATA[133]]></field> > </trailer> > </message> > > ------------------------------------------------------------ > ------------------ > Developer Access Program for Intel Xeon Phi Processors > Access to Intel Xeon Phi processor-based developer platforms. > With one year of Intel Parallel Studio XE. > Training and support from Colfax. > Order your platform today. http://sdm.link/xeonphi > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > -- Grant Birchmeier *Connamara Systems, LLC* *Made-To-Measure Trading Solutions.* Exactly what you need. No more. No less. http://connamara.com |
From: Mike G. <mg...@co...> - 2016-11-08 16:14:02
|
That is a CQG-specific user-defined message type. I don't recall whether they have one online, but ask CQG to send you a quickfix DataDictionary with their custom messages in it. I'm pretty sure they will. -- Mike Gatny Connamara Systems, LLC On Mon, Nov 7, 2016 at 11:29 PM, Alain Daniel <wb....@gm...> wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/ > > > Hello CQG team. > > I'm trying to send a Historical Market Data Request (UHV) ( > http://help.cqg.com/continuum/default.htm#!Documents/ > historicalmarketdatarequestuhv.htm ) but I'm getting > UnsupportedMessageType message. Here is my request and the response. > > Thanks is advanced, Adrian Chang > > <message> > <header> > <field number="8"><![CDATA[FIX.4.2]]></field> > <field number="35"><![CDATA[UHV]]></field> > <field number="34"><![CDATA[2]]></field> > <field number="49"><![CDATA[RedFinFC]]></field> > <field number="50"><![CDATA[TestFIXMarketData]]></field> > <field number="52"><![CDATA[20161108-04:15:18.407]]></field> > <field number="56"><![CDATA[CQG_Gateway]]></field> > </header> > <body> > <field number="55"><![CDATA[D]]></field> > <field number="262"><![CDATA[1478578518.41]]></field> > <field number="30003"><![CDATA[ACD]]></field> > <field number="30006"><![CDATA[50]]></field> > </body> > <trailer> > </trailer> > </message> > > > *** fromApp *** > <message> > <header> > <field number="8"><![CDATA[FIX.4.2]]></field> > <field number="9"><![CDATA[128]]></field> > <field number="35"><![CDATA[j]]></field> > <field number="34"><![CDATA[2]]></field> > <field number="49"><![CDATA[CQG_Gateway]]></field> > <field number="52"><![CDATA[20161108-04:15:20.346]]></field> > <field number="56"><![CDATA[RedFinFC]]></field> > <field number="57"><![CDATA[TestFIXMarketData]]></field> > </header> > <body> > <field number="45"><![CDATA[2]]></field> > <field number="58"><![CDATA[UnsupportedMessageType]]></field> > <field number="372"><![CDATA[UHV]]></field> > <field number="380"><![CDATA[3]]></field> > </body> > <trailer> > <field number="10"><![CDATA[133]]></field> > </trailer> > </message> > > ------------------------------------------------------------ > ------------------ > Developer Access Program for Intel Xeon Phi Processors > Access to Intel Xeon Phi processor-based developer platforms. > With one year of Intel Parallel Studio XE. > Training and support from Colfax. > Order your platform today. http://sdm.link/xeonphi > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > |