quickfix-users Mailing List for QuickFIX (Page 28)
Brought to you by:
orenmnero
You can subscribe to this list here.
2002 |
Jan
|
Feb
(4) |
Mar
(6) |
Apr
(2) |
May
(4) |
Jun
(1) |
Jul
(1) |
Aug
(2) |
Sep
(11) |
Oct
(3) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(7) |
Feb
(3) |
Mar
(10) |
Apr
(40) |
May
(63) |
Jun
(12) |
Jul
(26) |
Aug
(13) |
Sep
(6) |
Oct
(13) |
Nov
(17) |
Dec
(28) |
2004 |
Jan
(13) |
Feb
(6) |
Mar
(9) |
Apr
(20) |
May
(15) |
Jun
(29) |
Jul
(22) |
Aug
(11) |
Sep
(32) |
Oct
(34) |
Nov
(22) |
Dec
(33) |
2005 |
Jan
(17) |
Feb
(8) |
Mar
(3) |
Apr
(20) |
May
(19) |
Jun
(29) |
Jul
(30) |
Aug
(10) |
Sep
(24) |
Oct
|
Nov
(17) |
Dec
(11) |
2006 |
Jan
(32) |
Feb
(54) |
Mar
(34) |
Apr
(43) |
May
(14) |
Jun
(11) |
Jul
(10) |
Aug
(43) |
Sep
(37) |
Oct
(44) |
Nov
(16) |
Dec
(11) |
2007 |
Jan
(26) |
Feb
(5) |
Mar
(23) |
Apr
(3) |
May
(22) |
Jun
(17) |
Jul
(22) |
Aug
(34) |
Sep
(17) |
Oct
(18) |
Nov
(4) |
Dec
(8) |
2008 |
Jan
(28) |
Feb
(28) |
Mar
(23) |
Apr
(37) |
May
(53) |
Jun
(20) |
Jul
(30) |
Aug
(12) |
Sep
(19) |
Oct
(16) |
Nov
(15) |
Dec
(10) |
2009 |
Jan
(19) |
Feb
(8) |
Mar
(21) |
Apr
(8) |
May
(15) |
Jun
(22) |
Jul
(34) |
Aug
(18) |
Sep
(23) |
Oct
(26) |
Nov
(16) |
Dec
(13) |
2010 |
Jan
(38) |
Feb
(17) |
Mar
(39) |
Apr
(34) |
May
(5) |
Jun
(15) |
Jul
(7) |
Aug
(18) |
Sep
(4) |
Oct
(16) |
Nov
(3) |
Dec
(17) |
2011 |
Jan
(28) |
Feb
(12) |
Mar
(36) |
Apr
(9) |
May
(26) |
Jun
(27) |
Jul
(6) |
Aug
(10) |
Sep
(6) |
Oct
(1) |
Nov
(1) |
Dec
|
2012 |
Jan
(3) |
Feb
(4) |
Mar
|
Apr
(7) |
May
(9) |
Jun
(4) |
Jul
(2) |
Aug
(1) |
Sep
|
Oct
(9) |
Nov
(10) |
Dec
(8) |
2013 |
Jan
(3) |
Feb
(2) |
Mar
(7) |
Apr
(2) |
May
|
Jun
(7) |
Jul
(22) |
Aug
(5) |
Sep
(3) |
Oct
(3) |
Nov
(3) |
Dec
(2) |
2014 |
Jan
(4) |
Feb
|
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(7) |
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2015 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(4) |
Dec
|
2016 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(5) |
Nov
(1) |
Dec
|
2019 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Hei C. <str...@ya...> - 2009-07-07 19:44:59
|
Hi, I am using the latest quickfix C++ version to connect to a vendor. The vendor requires the BeginString to be "FIXT.1.1". If I set BeginString in quickfix's configuration, quickfix will refuse to start since it only supports FIX.4.0-FIX4.4. If I set BeginString to FIX.4.4 in quickfix's configuration and override the field in toAdmin() and toApp(), when the message comes back from my vendor with BeginString=FIX.1.1, quickfix's Session will kick me out because of "Incorrect BeginString". I even tried to set UseDataDictionary=N, and I still have the same problem. Any clean solution? Thanks in advance. Cheers, Hei |
From: ka w. <ka...@gm...> - 2009-07-04 15:39:15
|
Hi, I am trying to implement the ODBC support for QuickFIX.The four tables (event_log, messages, messages_log, sessions) are generated in the QuickFIX db. Data is written in three of the tables but here is my problem: nothing is written in the fourth table, the messages_log one. Can anyone help me on this? Here is an extract of the code in my application: this._settings = new QuickFix.SessionSettings(settingfile); this._messageStoreFactory = new OdbcStoreFactory(this._settings); this._logFactory = new OdbcLogFactory(this._settings); this._messageFactory = new QuickFix42.MessageFactory(); this._socketInitiator = new QuickFix.SocketInitiator(this, _messageStoreFactory, this._settings, this._logFactory, _messageFactory); Here is my configuration file: #Config file for the initiator # default settings for sessions [DEFAULT] ConnectionType=initiator OdbcLogUser=sa OdbcLogPassword=123 OdbcLogConnectionString=Driver={SQL Server Native Client 10.0};Server=PC-DE-K\SQLEXPRESS;Database=quickfix; OdbcStoreUser=sa OdbcStorePassword=123 OdbcStoreConnectionString=Driver={SQL Server Native Client 10.0};Server=PC-DE-K\SQLEXPRESS;Database=quickfix; ReconnectInterval=60 SenderCompID=KayInitiator UseDataDictionary = Y DataDictionary=FIX42.xml [SESSION] BeginString=FIX.4.2 TargetCompID=KayAcceptor StartTime=00:00:00 EndTime=00:00:00 # overide default setting for RecconnectInterval ReconnectInterval=20 HeartBtInt=30 SocketConnectPort=6523 SocketConnectHost=127.0.0.1 DataDictionary=FIX42.xml ResetOnLogon=Y |
From: Evans, J. \(IT Woodbridge\) <JF...@he...> - 2009-06-30 20:22:36
|
With each Security Definition Response (they are very big, 64K-128K) the memory increases until I finally get an out of memory exception. I dispose of every message and any disposable QuickFIX object I create. I tried both ODBC and FILE versions of STORE and LOG factories, no difference. I have a stripped-down version of the program that does nothing but request and receive security definitions and the problem persists. I even threw in a few "garbage collections" just for fun and it didn't help. I've read all the "memory leak" posts and none of them seem to apply. Has anyone else had a similar experience? I am using quickfix_net v 1.12.4 and .NET Framework 2.0. Thanks, Jack |
From: ka w. <ka...@gm...> - 2009-06-30 15:44:48
|
Hi, I am trying to implement an ODBC support for QuickFIX. I have already built QuickFIX with ODBC support as the OdbcLogFactory and OdbcStoreFactory classes were created. When I try to run my code I have this message: Configuration failed: [Microsoft][ODBC SQL Server Driver][SQL Server] Login Failed for user 'sa'. Why does QuickFIX try to login with user 'sa' as I provided an other OdbcLogUser in my seting file? Here is my Setting File: #Config file for the initiator # default settings for sessions [DEFAULT] ConnectionType=initiator OdbcLogUser = PC-de-Kay\Kay; OdbcLogConnectionString = DATABASE=quickfix;DRIVER={SQL Server};SERVER=(local); OdbcLogPassword = 123456; OdbcStoreUser = PC-de-Kaye\Kay; OdbcStoreConnectionString = DATABASE=quickfix;DRIVER={SQL Server};SERVER=(local); OdbcStorePassword = 123456; ReconnectInterval=60 SenderCompID=KayInitiator UseDataDictionary = Y DataDictionary=FIX42.xml [SESSION] BeginString=FIX.4.2 TargetCompID=KayAcceptor StartTime=00:00:00 EndTime=00:00:00 # overide default setting for RecconnectInterval ReconnectInterval=20 HeartBtInt=30 SocketConnectPort=6523 SocketConnectHost=127.0.0.1 DataDictionary=FIX42.xml ResetOnLogon=Y Here is an extract of my code to create a new session: .... string settingfile = "initiator.cfg"; this._settings = new QuickFix.SessionSettings(settingfile); this._messageStoreFactory = new OdbcStoreFactory(this._settings); this._logFactory = new OdbcLogFactory(this._settings); this._messageFactory = new QuickFix42.MessageFactory(); this._socketInitiator = new QuickFix.SocketInitiator(this, _messageStoreFactory, this._settings, this._logFactory, _messageFactory); this._socketInitiator.start(); .... Thanks, Kamel |
From: Julio M. P. C. <jul...@ho...> - 2009-06-29 15:17:14
|
How can i know what sequence numbers is the broker expecting? If i have bad numbers, it activates the OnLogout method, and there i don't have the message associated for that Logout, and i don't see the message in the quickfix log viewer neither. So, how can i know what was the reason of the logout? i expect that in the reason, the broker puts the expected seq number so i can reset it. Thanks in advance, Julio _________________________________________________________________ News, entertainment and everything you care about at Live.com. Get it now! http://www.live.com/getstarted.aspx |
From: Wilhelm T. <th...@cu...> - 2009-06-29 09:47:22
|
Hello I have an issue with QuickFix42.OrderStatusRequest Sometime when I set the Account c# QuickFix42. OrderStatusRequest message = new QuickFix42.OrderStatusRequest(); message.set(new QuickFix.Account(myAccount)); I see the following critical error: Description: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Details: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. at std.basic_string<char,std::char_traits<char>,std::allocator<char> >.{ctor}(basic_string<char\,std::char_traits<char>\,std::allocator<char> >* , SByte* ) at QuickFix.convertString(basic_string<char\,std::char_traits<char>\,std::allocator<char> >* , String s) at QuickFix.mapSetString(Int32 field, String value, FieldMap* map) at QuickFix.Message.setField(StringField field) at QuickFix42.OrderStatusRequest.set(Account value) Any idea? Does any one else use the OrderStatusRequest and experience the samething? Thank you for your help Wilhelm |
From: ka w. <ka...@gm...> - 2009-06-28 00:01:00
|
Hi, I am using QuickFIX under the .NET and with MSSQL server 2008. First, I want to implement ODBC support into QuickFIX. Following the documentation (http://www.quickfixengine.org/quickfix/doc/html/building.html) I have to uncomment this option into the source files: #define HAVE_ODBC 1 and then build the code. Then I guess the classes OdbcLogFactory and OdbcStoreFactory should be created. However when I add the created dll into my project, I can not find such classes under the QuickFIX namespace. Where these classes are generated if there are not under the QuickFIX namespace? If they should be there, why they are not generated? What am I doing wrong? Also, in the documentation I would have the following option: #define HAVE_MSSQL 1 Why this option doesn't exist in the source code? Thanks for your help, Kamel |
From: sumit a. <aro...@ya...> - 2009-06-25 08:58:37
|
Make sure that you are using the right jar files (quickfixj-all-1.4.0.jar).... --- On Thu, 6/25/09, Ken Bowen <kb...@al...> wrote: From: Ken Bowen <kb...@al...> Subject: [Quickfix-users] Quickfix/J: Also get unsatisfied link error To: qui...@li... Date: Thursday, June 25, 2009, 3:30 AM QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html I also tried downloading Quickfix/J. But when I run bin/executor.sh , I also get Exception in thread "main" java.lang.UnsatisfiedLinkError: create at quickfix.SessionSettings.create(Native Method) at quickfix.SessionSettings.<init>(Unknown Source) at quickfix.examples.executor.Executor.main(Executor.java:141) I would guess I'm missing the same thing in this case and my earlier post about using QuickFIX (C++) with the Java API. But what is it? --Ken Bowen ------------------------------------------------------------------------------ _______________________________________________ Quickfix-users mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-users |
From: Ken B. <kb...@al...> - 2009-06-24 22:00:44
|
I also tried downloading Quickfix/J. But when I run bin/executor.sh , I also get Exception in thread "main" java.lang.UnsatisfiedLinkError: create at quickfix.SessionSettings.create(Native Method) at quickfix.SessionSettings.<init>(Unknown Source) at quickfix.examples.executor.Executor.main(Executor.java:141) I would guess I'm missing the same thing in this case and my earlier post about using QuickFIX (C++) with the Java API. But what is it? --Ken Bowen |
From: Ken B. <kb...@al...> - 2009-06-24 20:30:08
|
Hi, Working on a Mac OS X 10.5.7 with Java. I built with ./configure --with-java and make . Worked fine; no complaints. I cd'd to tests and ran ./runat_java 49991 (netstat claims it's not in use). But I get: <at> Exception in thread "main" java.lang.UnsatisfiedLinkError: create at quickfix.SessionSettings.create(Native Method) at quickfix.SessionSettings.<init>(Unknown Source) at at.main(at.java:42) What am I missing? Thanks in advance, Ken |
From: sumit a. <aro...@ya...> - 2009-06-24 10:13:36
|
Hi Guys, In general what is the normal memory consumption/cpu consumption by a QuickFIX/J FIXEngine in Production environment (I know it depends upon the hardware structure and all) but still any stats ? Also, between QuickFIX (JNI) and QuickFIX/J which one is better when it comes to memory/cpu consumption ? Thanks, Sumit |
From: Julio M. P. C. <jul...@ho...> - 2009-06-23 23:54:54
|
I have finally resolved the issue. It was the field number 100 (ExDestination), that was not defined in the Fix4.4 data dictionary for the execution report message...and i was receiving it. I added the field to that message in the data dictionary as an optional field and it works fine! Best regards, Julio Date: Tue, 23 Jun 2009 17:52:12 -0400 Subject: Re: [Quickfix-users] Execution Reports Issue From: ka...@gm... To: jul...@ho... CC: qui...@li... Can you see the execution reports in the log file? 2009/6/23 Julio Manuel Paciello Coronel <jul...@ho...> QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html Hi, i am using Quickfix over .Net C# as an initiator application and i'm having an issue with the execution report...the broker process correctly my orders and then send back the execution reports but i'm not receiving them. I override the method OnMessage(ExecutionReport,SessionID), and have in the FromApp method a call to the crack method. The FromApp is never call after putting an order (and i can see the order status through a broker app to manage accounts manually) and consequently the OnMessage event is never fired. I can receive other message types, like heartbeats and trading session status, so i think it could not be a firewall issue, is that right? What could be the problem? and how can i see if the QuickFix Engine (under my client app) is receiving the execution reports or not? Thanks in advance, Julio Paciello Invite your mail contacts to join your friends list with Windows Live Spaces. It's easy! Try it! ------------------------------------------------------------------------------ Are you an open source citizen? Join us for the Open Source Bridge conference! Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250. Need another reason to go? 24-hour hacker lounge. Register today! http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org _______________________________________________ Quickfix-users mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-users _________________________________________________________________ News, entertainment and everything you care about at Live.com. Get it now! http://www.live.com/getstarted.aspx |
From: ka w. <ka...@gm...> - 2009-06-23 21:52:15
|
Can you see the execution reports in the log file? 2009/6/23 Julio Manuel Paciello Coronel <jul...@ho...> > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Hi, i am using Quickfix over .Net C# as an initiator application and i'm > having an issue with the execution report...the broker process correctly my > orders and then send back the execution reports but i'm not receiving them. > > I override the method OnMessage(ExecutionReport,SessionID), and have in the > FromApp method a call to the crack method. The FromApp is never call after > putting an order (and i can see the order status through a broker app to > manage accounts manually) and consequently the OnMessage event is never > fired. > > I can receive other message types, like heartbeats and trading session > status, so i think it could not be a firewall issue, is that right? > What could be the problem? and how can i see if the QuickFix Engine (under > my client app) is receiving the execution reports or not? > Thanks in advance, > Julio Paciello > > ------------------------------ > Invite your mail contacts to join your friends list with Windows Live > Spaces. It's easy! Try it!<http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us> > > > ------------------------------------------------------------------------------ > Are you an open source citizen? Join us for the Open Source Bridge > conference! > Portland, OR, June 17-19. Two days of sessions, one day of unconference: > $250. > Need another reason to go? 24-hour hacker lounge. Register today! > > http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > > |
From: amit k. <kha...@gm...> - 2009-06-23 14:22:41
|
Check out the logs generated by the quickfix engine. You can also download the log viewer from the quickfix website to make your life easy to go through the logs. On Tue, Jun 23, 2009 at 9:40 AM, Julio Manuel Paciello Coronel < jul...@ho...> wrote: > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Hi, i am using Quickfix over .Net C# as an initiator application and i'm > having an issue with the execution report...the broker process correctly my > orders and then send back the execution reports but i'm not receiving them. > > I override the method OnMessage(ExecutionReport,SessionID), and have in the > FromApp method a call to the crack method. The FromApp is never call after > putting an order (and i can see the order status through a broker app to > manage accounts manually) and consequently the OnMessage event is never > fired. > > I can receive other message types, like heartbeats and trading session > status, so i think it could not be a firewall issue, is that right? > What could be the problem? and how can i see if the QuickFix Engine (under > my client app) is receiving the execution reports or not? > Thanks in advance, > Julio Paciello > > ------------------------------ > Invite your mail contacts to join your friends list with Windows Live > Spaces. It's easy! Try it!<http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us> > > > ------------------------------------------------------------------------------ > Are you an open source citizen? Join us for the Open Source Bridge > conference! > Portland, OR, June 17-19. Two days of sessions, one day of unconference: > $250. > Need another reason to go? 24-hour hacker lounge. Register today! > > http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > > -- ------------------------------------------------------------------- Ph : (973)-896-8208 Email: kha...@gm... Web: http://khandelwal.amit.googlepages.com/home ------------------------------------------------------------------- |
From: Julio M. P. C. <jul...@ho...> - 2009-06-23 14:04:23
|
Hi, i am using Quickfix over .Net C# as an initiator application and i'm having an issue with the execution report...the broker process correctly my orders and then send back the execution reports but i'm not receiving them. I override the method OnMessage(ExecutionReport,SessionID), and have in the FromApp method a call to the crack method. The FromApp is never call after putting an order (and i can see the order status through a broker app to manage accounts manually) and consequently the OnMessage event is never fired. I can receive other message types, like heartbeats and trading session status, so i think it could not be a firewall issue, is that right? What could be the problem? and how can i see if the QuickFix Engine (under my client app) is receiving the execution reports or not? Thanks in advance, Julio Paciello _________________________________________________________________ Invite your mail contacts to join your friends list with Windows Live Spaces. It's easy! http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us |
From: Alex C. <Ale...@cs...> - 2009-06-22 18:00:57
|
We have a situation where we would like to forward messages from one session to another. Is there any built-in mechanism for doing so in QuickFix, or is our only recourse to programmatically process each message, change the sender and target comp ids and send it off to the second session? Alex |
From: Macleod, J. <Jam...@st...> - 2009-06-16 10:35:28
|
I'm not seeing consistent behaviour when heartbeats are missed. Sometimes when heartbeats are missed a logout is sent, but other times no logout is sent. In both instances there is no response to the heartbeat and when the network connection returns there is an exchange of logon messages. Any ideas why this would be? Thanks, James ________________________________ From: sumit arora [mailto:aro...@ya...] Sent: 15 June 2009 12:20 To: quickfix-users; Macleod, James Subject: Re: [Quickfix-users] QuickFix Logout Also, if it doesn't receive the response for the logon in a stipulated time-limit... --- On Mon, 6/15/09, Macleod, James <Jam...@st...> wrote: From: Macleod, James <Jam...@st...> Subject: [Quickfix-users] QuickFix Logout To: "quickfix-users" <qui...@li...> Date: Monday, June 15, 2009, 3:00 PM QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html Hello, Under what circumstances does the Quck Fix Engine send a logout message if there is a network problem and heartbeats are late/missed? Thanks, James ************************************************************************ ****************** More information on Standard Bank is available at www.standardbank.com <http://www.standardbank.com/> Everything in this email and any attachments relating to the official business of Standard Bank Group Limited and any or all subsidiaries, ("the Company"), is proprietary to the Company. It is confidential, legally privileged and protected by relevant laws. The Company does not own and endorse any other content. Views and opinions are those of the sender unless clearly stated as being that of the Company. The person or persons addressed in this email are the sole authorised recipient. Please notify the sender immediately if it has unintentionally, or inadvertently reached you and do not read, disclose or use the content in any way and delete this e-mail from your system. The Company cannot ensure that the integrity of this email has been maintained nor that it is free of errors, virus, interception or interference. The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. This message is provided for informational purposes and should not be construed as a solicitation or offer to buy or sell any securities or related financial instruments. ************************************************************************ ****************** This message has been scanned for viruses by BlackSpider MailControl <http://www.blackspider.com/> -----Inline Attachment Follows----- ------------------------------------------------------------------------ ------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects -----Inline Attachment Follows----- _______________________________________________ Quickfix-users mailing list Qui...@li... <http://us.mc05g.mail.yahoo.com/mc/compose?to=Qui...@li...urc eforge.net> https://lists.sourceforge.net/lists/listinfo/quickfix-users Click here <https://www.mailcontrol.com/sr/u0IFI6CM8gXTndxI!oX7UqcUCtlg0TD8BOyDYQNi mXY8NMa99DR!q4GxKxFqqfdAyt4w!zfvRD1aXEW7R1X!lw==> to report this email as spam. |
From: sumit a. <aro...@ya...> - 2009-06-15 11:21:38
|
Also, if it doesn't receive the response for the logon in a stipulated time-limit... --- On Mon, 6/15/09, Macleod, James <Jam...@st...> wrote: From: Macleod, James <Jam...@st...> Subject: [Quickfix-users] QuickFix Logout To: "quickfix-users" <qui...@li...> Date: Monday, June 15, 2009, 3:00 PM QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html Hello, Under what circumstances does the Quck Fix Engine send a logout message if there is a network problem and heartbeats are late/missed? Thanks, James ****************************************************************************************** More information on Standard Bank is available at www.standardbank.com Everything in this email and any attachments relating to the official business of Standard Bank Group Limited and any or all subsidiaries, ("the Company"), is proprietary to the Company. It is confidential, legally privileged and protected by relevant laws. The Company does not own and endorse any other content. Views and opinions are those of the sender unless clearly stated as being that of the Company. The person or persons addressed in this email are the sole authorised recipient. Please notify the sender immediately if it has unintentionally, or inadvertently reached you and do not read, disclose or use the content in any way and delete this e-mail from your system. The Company cannot ensure that the integrity of this email has been maintained nor that it is free of errors, virus, interception or interference. The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. This message is provided for informational purposes and should not be construed as a solicitation or offer to buy or sell any securities or related financial instruments. ****************************************************************************************** This message has been scanned for viruses by BlackSpider MailControl -----Inline Attachment Follows----- ------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects -----Inline Attachment Follows----- _______________________________________________ Quickfix-users mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-users |
From: Macleod, J. <Jam...@st...> - 2009-06-15 09:31:47
|
Hello, Under what circumstances does the Quck Fix Engine send a logout message if there is a network problem and heartbeats are late/missed? Thanks, James ***************************************************************************** More information on Standard Bank is available at www.standardbank.com Everything in this email and any attachments relating to the official business of Standard Bank Group Limited and any or all subsidiaries, ("the Company"), is proprietary to the Company. It is confidential, legally privileged and protected by relevant laws. The Company does not own and endorse any other content. Views and opinions are those of the sender unless clearly stated as being that of the Company. The person or persons addressed in this email are the sole authorised recipient. Please notify the sender immediately if it has unintentionally, or inadvertently reached you and do not read, disclose or use the content in any way and delete this e-mail from your system. The Company cannot ensure that the integrity of this email has been maintained nor that it is free of errors, virus, interception or interference. The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. This message is provided for informational purposes and should not be construed as a solicitation or offer to buy or sell any securities or related financial instruments. ***************************************************************************** This message has been scanned for viruses by BlackSpider MailControl - www.blackspider.com |
From: amit k. <kha...@gm...> - 2009-06-11 20:15:40
|
I am using Ubuntu machine. I have installed quickfix with the support for mysql database. I am getting the following errors when I run the unit test cases as described in the documentation. Also, when I try to run the sample code from the examples code it is asking for a sample setting file. It is not mentioned in the doc what file to supply. Can someone please advise ? ./ordermatch usage: /home/akhandelwal/tools/quickfix/examples/ordermatch/.libs/lt-ordermatch FILE. <ut> <output> ................................................................................................................FFFFF.................................................. </output> <results total="167" failures="5"> <failure line= "0" file= "unknown"> <test> <![CDATA[ PN7CPPTest4TestIN3FIX12MessageStoreEEE]]> </test> <text> <![CDATA[ assert(no futher information available)]]> </text> </failure> <failure line= "0" file= "unknown"> <test> <![CDATA[ PN7CPPTest4TestIN3FIX12MessageStoreEEE]]> </test> <text> <![CDATA[ assert(no futher information available)]]> </text> </failure> <failure line= "0" file= "unknown"> <test> <![CDATA[ PN7CPPTest4TestIN3FIX12MessageStoreEEE]]> </test> <text> <![CDATA[ assert(no futher information available)]]> </text> </failure> <failure line= "0" file= "unknown"> <test> <![CDATA[ PN7CPPTest4TestIN3FIX12MessageStoreEEE]]> </test> <text> <![CDATA[ assert(no futher information available)]]> </text> </failure> <failure line= "0" file= "unknown"> <test> <![CDATA[ PN7CPPTest4TestIN3FIX12MessageStoreEEE]]> </test> <text> <![CDATA[ assert(no futher information available)]]> </text> </failure> </results> </ut> Cheers, Amit Khandelwal -- ------------------------------------------------------------------- Ph : (973)-896-8208 Email: kha...@gm... Web: http://khandelwal.amit.googlepages.com/home ------------------------------------------------------------------- |
From: sumit a. <aro...@ya...> - 2009-06-08 15:31:36
|
Hello, When using QuickFIX on Windows I use - static { System.loadLibrary("quickfix_jni"); } If I have to use QuickFIX/J on unix, how can I get the .so file ? Thanks, Sumit |
From: Don A. <do...@de...> - 2009-06-04 13:25:11
|
I've just started to attempt to test quickfix and would like to do so from Python. But in building quickfix on a Linux (Ubuntu 8.04) system, I've run into the same issues that I see reported on this list earlier this year from others. I, too, attempted to fix the compile-time problems in QuickfixPython.cpp and did get it to compile. But I then run into the inability to import quickfix from python 2.5. The two earlier threads discussing this issue seem to have petered out without any resolution of the problem. So, at this point, it appears that the Python API is broken (unless I'm missing something, it looks like no attempt was made to even compile this thing on a Linux system prior to release). Does anyone have any bright ideas beyond giving up? Thanks -- /Don Allen |
From: sumit a. <aro...@ya...> - 2009-06-03 17:03:49
|
Hi, Does anyone know - How to support dynamic session-settings using QuickFIX ? Thanks, Sumit |
From: sumit a. <aro...@ya...> - 2009-06-01 14:14:04
|
Hello, My ECN has one start-time for Monday to Friday, but a different start-time for Sunday. I cannot have multiple sessions with the ECN, so is it possible to configure different start-time and end-times for different days in QuickFIX ? Also, if the QuickFIX engine starts on a new day does it start with sequence number =1 or it picks up the last sequence-number of the previous day? Thanks for all your help, Sumit |
From: Macleod, J. <Jam...@st...> - 2009-05-27 08:30:24
|
Thanks Ulisses, Am I correct in thinking that Fix messages are not sent (i.e. the toAdmin methods is not called) until the engine has opened a socket on the remote server and established a connection to the remote fix engine? Thanks, James ________________________________ From: Ulisses [mailto:hay...@gm...] Sent: 26 May 2009 23:42 To: Macleod, James Cc: qui...@li... Subject: Re: [Quickfix-users] Detecting Logon Events Hi James, You should be talking about the .NET part of quickfix, is it right? The only way I know is putting a breakpoint in the C++ code. Using the managed C++ you aren't able to do this. The C++ classes that deal with network connections are the socketInitiator and socketAcceptor. You will need to understand a little about berkeley sockets API, I don't know if you already know. Basically, these classes are responsible to open a socket, establish a connection, listen on a port, and so on. Best Regards, Ulisses. On Tue, May 26, 2009 at 11:35 AM, Macleod, James <Jam...@st...> wrote: QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html I would like to detect when the quick fix engine does attempts to logon, but fails to connect, e.g. if there a network problem. The OnLogon method is called after logon. The toAdmin method doesn't appear to be called if a network connection cannot be established with the remote fix engine. Is there any way to do this? Many thanks, James ************************************************************************ ****************** More information on Standard Bank is available at www.standardbank.com <http://www.standardbank.com/> Everything in this email and any attachments relating to the official business of Standard Bank Group Limited and any or all subsidiaries, ("the Company"), is proprietary to the Company. It is confidential, legally privileged and protected by relevant laws. The Company does not own and endorse any other content. Views and opinions are those of the sender unless clearly stated as being that of the Company. The person or persons addressed in this email are the sole authorised recipient. Please notify the sender immediately if it has unintentionally, or inadvertently reached you and do not read, disclose or use the content in any way and delete this e-mail from your system. The Company cannot ensure that the integrity of this email has been maintained nor that it is free of errors, virus, interception or interference. The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. This message is provided for informational purposes and should not be construed as a solicitation or offer to buy or sell any securities or related financial instruments. ************************************************************************ ****************** This message has been scanned for viruses by BlackSpider MailControl <http://www.blackspider.com/> ------------------------------------------------------------------------ ------ Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Creative Lab, Visual Complexity, Processing, & iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian Group, R/GA, & Big Spaceship. http://www.creativitycat.com <http://www.creativitycat.com/> _______________________________________________ Quickfix-users mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-users Click here <https://www.mailcontrol.com/sr/EuWbatFNtzLTndxI!oX7Us8RWzDHXrou57cCq!Mn uUygT9jsW8rAQZcAjT2tuRw5O2GP8oYAkQSlpYdScFxEUA==> to report this email as spam. |