quickfix-users Mailing List for QuickFIX (Page 57)
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: Mark T. K. <mke...@di...> - 2006-07-14 18:49:01
|
i'm talking about the threads within the process. i thought you'd have: 1) the initial 'main' thread, sitting in a loop polling for the end of the sesion. 2) one to dequeue (or transmit) messages (so that processing and reception/transmission are not synchronous). 3) one to deliver callbacks. but you're saying that the thread that receives a message also delivers the callback? so that if the callback blocks, messages won't be received/transmitted until the callback returns? is there an architecture document floating around somewhere? e.g. i made a pass through the online doc and don't recall discovering that SocketInitiator guaranteed synchronized access for its callbacks? /mark Oren Miller wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > I'm not really sure I follow. There is only one thread within the > loop. As for total threads within the application, there are two at > this point. One is being occupied by your loop, the other by the > SocketInitiator. > > Also, there isn't any sense using the SynchronizedApplication in > conjunction with the SocketInitiator. You are guaranteed a single > thread to your callbacks. All you are doing is adding overhead. > > --oren > > On Jul 11, 2006, at 3:55 PM, Mark T. Kennedy wrote: > >> QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ >> html/index.html >> QuickFIX Support: http://www.quickfixengine.org/services.html >> >> >> consider the following server initialization fragment: >> >> while (s->isSessionTime ()) >> { >> // poll once a minute to shut down >> FIX::process_sleep (60); >> } >> >> how many threads will be active within the isSessionTime >> loop? i'm guessing at least 3. > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=12162 |
From: Oren M. <or...@qu...> - 2006-07-11 21:21:18
|
I'm not really sure I follow. There is only one thread within the loop. As for total threads within the application, there are two at this point. One is being occupied by your loop, the other by the SocketInitiator. Also, there isn't any sense using the SynchronizedApplication in conjunction with the SocketInitiator. You are guaranteed a single thread to your callbacks. All you are doing is adding overhead. --oren On Jul 11, 2006, at 3:55 PM, Mark T. Kennedy wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ > html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > consider the following server initialization fragment: > > while (s->isSessionTime ()) > { > // poll once a minute to shut down > FIX::process_sleep (60); > } > > how many threads will be active within the isSessionTime > loop? i'm guessing at least 3. |
From: Mark T. K. <mke...@di...> - 2006-07-11 20:55:20
|
consider the following server initialization fragment: try { Application application; FIX::SynchronizedApplication synchronized_application (application); FIX::SessionSettings settings (argv[optind]); FIX::FileStoreFactory storeFactory (settings); FIX::FileLogFactory logFactory (settings); FIX::SocketInitiator initiator (synchronized_application, storeFactory, settings, logFactory); initiator.start (); // there is only one session at this point FIX::SessionID sid = *initiator.getSessions ().begin (); FIX::Session *s = FIX::Session::lookupSession (sid); while (s->isSessionTime ()) { // poll once a minute to shut down FIX::process_sleep (60); } initiator.stop (); return 0; } catch (std::exception& e) { std::cerr << e.what () << std::endl; return 1; } how many threads will be active within the isSessionTime loop? i'm guessing at least 3. /mark This communication and any attachments may contain confidential/proprietary information and is intended for information purposes only. It is not an invitation or offer to purchase interests from Diamondback. Any representation to the contrary is unintentional. This communication is intended only for the person(s) to whom it is addressed. If you are not the intended recipient you are hereby notified that you have received this document in error and that any review, dissemination, distribution, or copying of this message or any attachments is not permitted. If you have received this in error, please notify the sender immediately by e-mail and delete this message. All e-mails sent to or received from this address will be received by Diamondback Capital Management's company e-mail system and is subject to archival and possible review by someone other than the recipient. This notice is automatically appended to each e-mail message leaving Diamondback Capital Management. |
From: <or...@qu...> - 2006-06-27 19:24:06
|
Sorry. I meant the replaceGroup method. > -------- Original Message -------- > Subject: Re: [Quickfix-users] updating fields in repeating groups > From: Sam <sa...@ho...> > Date: Tue, June 27, 2006 2:01 pm > To: qui...@li... > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > <oren@...> writes: > > > > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > > QuickFIX Support: http://www.quickfixengine.org/services.html > > > > After you make your changes use replaceGroup to overwrite the old group in the > message. > > > > --oren > > > > Oren, thanks very much for your response. > However, I could not find this method in QF 1.11.1 - the closest match I found > was removeGroup(). Could you please provide (or point me to) an example of how > to use this feature? > > thanks again. > Sam > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users |
From: <or...@qu...> - 2006-06-27 19:23:46
|
Yeah, you will need to get the development version out of subversion. Instructions on retrieving it are available on the developer page: http://www.quickfixengine.org/developers.html This has the removeGroup method. --oren > -------- Original Message -------- > Subject: Re: [Quickfix-users] updating fields in repeating groups > From: Sam <sa...@ho...> > Date: Tue, June 27, 2006 2:01 pm > To: qui...@li... > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > <oren@...> writes: > > > > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > > QuickFIX Support: http://www.quickfixengine.org/services.html > > > > After you make your changes use replaceGroup to overwrite the old group in the > message. > > > > --oren > > > > Oren, thanks very much for your response. > However, I could not find this method in QF 1.11.1 - the closest match I found > was removeGroup(). Could you please provide (or point me to) an example of how > to use this feature? > > thanks again. > Sam > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users |
From: Sam <sa...@ho...> - 2006-06-27 19:02:08
|
<oren@...> writes: > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > After you make your changes use replaceGroup to overwrite the old group in the message. > > --oren > Oren, thanks very much for your response. However, I could not find this method in QF 1.11.1 - the closest match I found was removeGroup(). Could you please provide (or point me to) an example of how to use this feature? thanks again. Sam |
From: <or...@qu...> - 2006-06-27 17:39:19
|
After you make your changes use replaceGroup to overwrite the old group in the message. --oren > -------- Original Message -------- > Subject: [Quickfix-users] updating fields in repeating groups > From: Sam <sa...@ho...> > Date: Tue, June 27, 2006 12:10 pm > To: qui...@li... > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > I need some help understanding if/how I can update fields within > repeating groups. > > Here's my situation - my application creates a NewOrderList message with a > certain number of orders in it. Before sending it out another method may > need to modify one or more fields in the message - e.g. change the OrderQty > of order #2, change the Price of order #4, etc. How can I do this? I tried > using getGroup() but that gives me a copy of the group so updating any > fields in it won't affect the original message. > > Any help would be greatly appreciated. > > Thanks very much in advance. > > Sam > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users |
From: Sam <sa...@ho...> - 2006-06-27 17:10:55
|
I need some help understanding if/how I can update fields within repeating groups. Here's my situation - my application creates a NewOrderList message with a certain number of orders in it. Before sending it out another method may need to modify one or more fields in the message - e.g. change the OrderQty of order #2, change the Price of order #4, etc. How can I do this? I tried using getGroup() but that gives me a copy of the group so updating any fields in it won't affect the original message. Any help would be greatly appreciated. Thanks very much in advance. Sam |
From: Sam <sa...@ho...> - 2006-06-22 20:09:22
|
Sean Kirkpatrick <sean.kirkpatrick@...> writes: > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > Sam, > > You are correct: new thread per session. > > --Sean > Sean, thanks for your quick response. I appreciate it. Sam |
From: Sean K. <sea...@pi...> - 2006-06-22 16:40:28
|
Sam, You are correct: new thread per session. --Sean -----Original Message----- From: qui...@li... [mailto:qui...@li...]On Behalf Of Sam Sent: Thursday, June 22, 2006 10:44 AM To: qui...@li... Subject: [Quickfix-users] Threaded sockets QuickFIX Documentation: = http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html Hi all, I seem to recall reading somewhere that if we use ThreadedSocketAcceptor = and ThreadedSocketInitiator QF will create a new thread for each connection = - is that right, or does it use a pool of threads? I couldn't find the answer = so I'd appreciate it if anyone could respond. Thanks very much in advance. Sam Using Tomcat but need to do more? Need to support web services, = security? Get stuff done quickly with pre-integrated technology to make your job = easier Download IBM WebSphere Application Server v.1.0.1 based on Apache = Geronimo http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D= 121642 _______________________________________________ Quickfix-users mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-users |
From: Sam <sa...@ho...> - 2006-06-22 14:44:44
|
Hi all, I seem to recall reading somewhere that if we use ThreadedSocketAcceptor and ThreadedSocketInitiator QF will create a new thread for each connection - is that right, or does it use a pool of threads? I couldn't find the answer so I'd appreciate it if anyone could respond. Thanks very much in advance. Sam |
From: Mark T. K. <mke...@di...> - 2006-06-12 12:34:18
|
just want to confirm that when you have a pair of servers, the config file pattern is: SocketConnectPort SocketConnectPort1 and not: SocketConnectPort1 SocketConnectPort2 the examples in the config documentation suggests this but the text descriptions of the parameters doesn't make it crystal clear. /mark This communication and any attachments may contain confidential/proprietary information and is intended for information purposes only. It is not an invitation or offer to purchase interests from Diamondback. Any representation to the contrary is unintentional. This communication is intended only for the person(s) to whom it is addressed. If you are not the intended recipient you are hereby notified that you have received this document in error and that any review, dissemination, distribution, or copying of this message or any attachments is not permitted. If you have received this in error, please notify the sender immediately by e-mail and delete this message. All e-mails sent to or received from this address will be received by Diamondback Capital Management's company e-mail system and is subject to archival and possible review by someone other than the recipient. This notice is automatically appended to each e-mail message leaving Diamondback Capital Management. |
From: Tareq S. <di...@ya...> - 2006-06-02 18:57:25
|
Dear Guys, I need your help to know the followings: I'm using Quick FIX 1.11.1 with MSVC++6 How to store the log in MS SQL How to get catch the errors in case of validation rejection Best Regards Tareq Saleh __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Steve B. <sb...@sm...> - 2006-05-28 07:07:22
|
Hi Chris, The MINA message is logged using the QuickFIX session-oriented logging mechanism. What this means is that all session events are logged=20 to the same log category since the QF API provides no way to specify a=20 category when logging the event. Unfortunately, this makes filtering a=20 little more difficult. It appears you are using the default JDK 1.4 logging as the underyling logging framework. You can write a java.util.logging.Filter and attach it to whatever logging handler you are using.=20 http://java.sun.com/j2se/1.4.2/docs/api/java/util/logging/Filter.html You can also use this technique to filter FIX messages before they saved to log (somebody else asked about that capability recently). Regards, Steve > -----Original Message----- > From: qui...@li...=20 > [mailto:qui...@li...] On Behalf=20 > Of Chris van O > Sent: Sunday, May 28, 2006 2:44 AM > To: qui...@li... > Subject: [Quickfix-users] Quickfix/J How do I suppress MINA messages? >=20 > QuickFIX Documentation:=20 > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html >=20 > May 27, 2006 8:40:10 PM quickfix.mina.acceptor.AcceptorIoHandler=20 > sessionCreated > INFO: MINA session created: /127.0.0.1:2423 > May 27, 2006 8:40:10 PM quickfix.mina.initiator.InitiatorIoHandler=20 > sessionCreated > INFO: MINA session created: /127.0.0.1:2423 >=20 > How can I get rid of these messages? >=20 > Thanks, Chris |
From: Chris v. O <chr...@gn...> - 2006-05-28 00:43:59
|
May 27, 2006 8:40:10 PM quickfix.mina.acceptor.AcceptorIoHandler sessionCreated INFO: MINA session created: /127.0.0.1:2423 May 27, 2006 8:40:10 PM quickfix.mina.initiator.InitiatorIoHandler sessionCreated INFO: MINA session created: /127.0.0.1:2423 How can I get rid of these messages? Thanks, Chris |
From: Mark T. K. <mke...@di...> - 2006-05-25 13:36:05
|
Sean Kirkpatrick wrote: > > Hello All, > > Has anyone tried building Quickfix as a 64-bit binary? Or run the > 32-bit binary on a 64-bit architecture? I'm really just curious at > this point, but I'm sure this will become an issue within the next > year or so... > > Thanks, > Sean > on fedora core 4 (x86_64), i have built a 32-bit library (v1.11.1) and run 32-bit binaries without any problems. i've since replaced it with a 64-bit build and run 64-bit binaries, also without a problem. caveat: my volume is low and i host only one FIX session per process, so i doubt if i'm generating much concurrency. /mark kennedy diamondback capital This communication and any attachments may contain confidential/proprietary information and is intended for information purposes only. It is not an invitation or offer to purchase interests from Diamondback. Any representation to the contrary is unintentional. This communication is intended only for the person(s) to whom it is addressed. If you are not the intended recipient you are hereby notified that you have received this document in error and that any review, dissemination, distribution, or copying of this message or any attachments is not permitted. If you have received this in error, please notify the sender immediately by e-mail and delete this message. All e-mails sent to or received from this address will be received by Diamondback Capital Management's company e-mail system and is subject to archival and possible review by someone other than the recipient. This notice is automatically appended to each e-mail message leaving Diamondback Capital Management. |
From: Sean K. <sea...@pi...> - 2006-05-25 11:48:15
|
Hello All, Has anyone tried building Quickfix as a 64-bit binary? Or run the = 32-bit binary on a 64-bit architecture? I'm really just curious at this = point, but I'm sure this will become an issue within the next year or = so... Thanks, Sean |
From: Steve B. <sb...@sm...> - 2006-05-22 10:45:25
|
I'm happy to announce the release of QuickFIX/J 1.0.0. It can be downloaded from the new quickfixj SourceForge project site. The following link will take you to the 1.0.0 downloads at SourceForge. Downloads: http://tinyurl.com/raoav New Features and Improvements: * Compatability updates for QuickFIX JNI 1.11.1 * Upgrade to MINA 0.9. * Feature #171 Allow variables in session settings * Performance improvements in the FileStore * New FileLog options for timestamps on messages (with optional=20 milliseconds) =20 Bug Fixes: * Bug #170 DataDictionary field in Message not initialized * Bug #172 The message.clone() doesn't preserve group ordering * Bug #173 SessionSchedule improvements * Bug #179 Time-only presentation based on 1970. Patch by John Hensley. * Bug #184 Added missing fields to ExecutionReport. * Fix for creation time storage in FileStore * Fixed session start/create time retrieval in JDBCStore Any new bugs or features requests should be entered into the QuickFIX/J issue tracker at http://www.quickfixj.org/jira. You can create an account for yourself. Steve Bate Smart Trade Technologies http://www.smart-trade.net/ |
From: Steve B. <sb...@sm...> - 2006-05-22 10:45:25
|
QuickFIX/J has moved to a new project home: www.quickfixj.org.=20 The project will still work closely with the QuickFIX team but=20 will be run independently. Some of the changes associated with=20 the move include: * New home page (http://www.quickfixj.org) on a dedicated server sponsored by Smart Trade Technologies. This server will also support CruiseControl, Jira (issue tracking) and Confluence=20 (wiki) servers. * Subversion source code management - Hosted at SourceForge=20 The quickfixj module of the QuickFIX CVS repository will no=20 longer be used. The SourceForge project containing the Subversion repository is called 'quickfixj'. * Issue/bug tracking and release management using Jira Bugs and feature requests should be submitted here instead of the PHPBugTracker application. You can access Jira from the QFJ home page. You can browse issues anonymously but will need to create an account to submit them. Creating an account will also allow to monitor the status of issues with email notifications. * A community wiki using Confluence.=20 I have placed some initial information on the wiki already=20 but I'm looking for community involvement here. To add information to the wiki, you will need to create an account (to minimize spam on the site). However, you can browse the information anonymously. * A quickfixj-users mailing list.=20 I've decided to start with one mailing list for both user=20 and development-related discussions. If the traffic or content becomes a problem, we can split the lists later. I'll also continue to monitor the quickfix-users and quickfix-developers list but QFJ-specific discussions should be directed on the QFJ list. See the support section of the web site (or go to the SourceForge project page) to sign up for the new list. Regards, Steve Bate Smart Trade Technologies http://www.smart-trade.net/ =20 |
From: Oren M. <or...@qu...> - 2006-05-16 14:48:42
|
There is no encryption built into QuickFIX. You will need to use a tunneling program like Stunnel. --oren On May 15, 2006, at 10:11 AM, Robert Sanchez wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ > html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > Does quickfix offer encryption support? I am particularly > interested in the use of digital certificates or trustsores. > > Thanks, > > _________________________________________________________________ > Express yourself instantly with MSN Messenger! Download today - > it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/ > direct/01/ > > > > ------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, > security? > Get stuff done quickly with pre-integrated technology to make your > job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > |
From: Robert S. <rsa...@ho...> - 2006-05-15 15:12:10
|
Does quickfix offer encryption support? I am particularly interested in the use of digital certificates or trustsores. Thanks, _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today - it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ |
From: Francis G. <fr...@at...> - 2006-05-06 20:05:26
|
Greg, This is what I use and it works fine with .NET 1.1 but with 2.0 you'll need the latest sources from CVS. socket.stop(); socket = null; GC.Collect(); GC.WaitForPendingFinalizers(); Francis -----Original Message----- From: Greg Chase [mailto:gr...@ch...] Sent: Saturday, May 06, 2006 14:14 To: Francis Gingras Cc: qui...@li... Subject: Re: [Quickfix-users] Re: Re: .NET Can not open bpdy file ... unreleased resources I too am having trouble releasing resources. I'm using VS 2005, C# and .Net 2.0. How should one properly close down an initiator in .Net? The flow of my application is: -------------------------------------- settings = new SessionSettings(configFile); storeFactory = new FileStoreFactory(settings); logFactory = new FileLogFactory(settings); messageFactory = new DefaultMessageFactory(); initiator = new ThreadedSocketInitiator(this, storeFactory, settings, logFactory, messageFactory); ... initiator.start(); ... initiator.stop(); initiator = null; settings = null; storeFactory = null; logFactory = null; messageFactory = null; ---------------------------------------- At this point all of the four storage files are still locked (can't be opened in notepad). Forcing garbage collection doesn't help. Is anyone able to successfully release ThreadedSocketInitiator resources in .Net? Greg On 5/2/06, Francis Gingras <fr...@at...> wrote: > > > Tom, > > Just so you know, I sent a project to Oren that demonstrates the problem. > > > Francis -- Gregory Chase Managing Partner Chase Capital Management, LLC |
From: Greg C. <gr...@ch...> - 2006-05-06 18:14:11
|
I too am having trouble releasing resources. I'm using VS 2005, C# and .Net 2.0. How should one properly close down an initiator in .Net? The flow of my application is: -------------------------------------- settings =3D new SessionSettings(configFile); storeFactory =3D new FileStoreFactory(settings); logFactory =3D new FileLogFactory(settings); messageFactory =3D new DefaultMessageFactory(); initiator =3D new ThreadedSocketInitiator(this, storeFactory, settings, logFactory, messageFactory); ... initiator.start(); ... initiator.stop(); initiator =3D null; settings =3D null; storeFactory =3D null; logFactory =3D null; messageFactory =3D null; ---------------------------------------- At this point all of the four storage files are still locked (can't be opened in notepad). Forcing garbage collection doesn't help. Is anyone able to successfully release ThreadedSocketInitiator resources in .Net? Greg On 5/2/06, Francis Gingras <fr...@at...> wrote: > > > Tom, > > Just so you know, I sent a project to Oren that demonstrates the problem. > > > Francis -- Gregory Chase Managing Partner Chase Capital Management, LLC |
From: Oren M. <or...@qu...> - 2006-05-05 19:14:20
|
Can't really give much help on your first question, I would need a lot = more detail about what you are actually doint. There is not enough = information here to hazard a guess. ODBC support is in testing and will be available in the next release. There is not official support for the systems you listed. QuickFIX may = work on those systems, but we do not have any first hand experience with = it. --oren ----- Original Message -----=20 From: Miguel Peralta=20 To: qui...@li...=20 Cc: qui...@li...=20 Sent: Friday, May 05, 2006 12:16 PM Subject: [Quickfix-developers] DB2 ODBC QuickFIX Documentation: = http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX = Support: http://www.quickfixengine.org/services.html=20 hello, I install quickfix, and I have tree cuestions:=20 I cannot write in MYSQL database what I do wrong?=20 I compile the examples and the database but when I try to configure to = record in MYSQL nothing happens=20 Fix can support DB2 or I need to do something more?=20 Whit quickfix can use ODBC to use a external Database?=20 Have support for the AS/400, ISERIES OR I5.=20 And I thought that my president was stupid -------------------------------------------------------------------------= ----- =C9xitos, grandes cl=E1sicos y novedades. Un mill=F3n de canciones en = MSN Music. ------------------------------------------------------- Using = Tomcat but need to do more? Need to support web services, security? Get = stuff done quickly with pre-integrated technology to make your job = easier Download IBM WebSphere Application Server v.1.0.1 based on Apache = Geronimo = http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D= 121642 _______________________________________________ = Quickfix-developers mailing list = Qui...@li... = https://lists.sourceforge.net/lists/listinfo/quickfix-developers |
From: Miguel P. <mpe...@ho...> - 2006-05-05 17:17:37
|
<html><div style='background-color:'><P>hello, I install quickfix, and I have tree cuestions: <P>I cannot write in MYSQL database what I do wrong? <BR>I compile the examples and the database but when I try to configure to record in MYSQL nothing happens <P>Fix can support DB2 or I need to do something more? <BR>Whit quickfix can use ODBC to use a external Database? <BR>Have support for the AS/400, ISERIES OR I5. </P><BR><BR> <DIV> <DIV style="PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; PADDING-TOP: 10px">And I thought that my president was stupid</DIV></DIV></div><br clear=all><hr>Éxitos, grandes clásicos y novedades. <a href="http://g.msn.com/8HMAESES/2755??PS=47575" target="_top">Un millón de canciones en MSN Music. </a> </html> |