quickfix-users Mailing List for QuickFIX (Page 80)
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: Oren M. <or...@qu...> - 2004-04-23 17:35:53
|
Igor, What is the reason for needing to connect to your database in that thread? Can't you just connect to it before you call start() on the initiator? --oren On Apr 23, 2004, at 11:55 AM, Igo...@ub... wrote: > Hello, > > If I understand correctly, SocketInitiator spawns a separate thread. I > would like to do something at the beginning of this thread, > specifically to > create a database session that I can use in my message handlers called > from > this thread (I wan't a separate session for each thread). However, all > the > interresting looking methods such as onStart, onCreate etc are private > in > SocketInitiator, they cannot be overriden. > > At this stage, I'm thinking of changing onStart to protected in > SocketInitiator.h, creating a class MySocketInitiator derived from > SocketInitiator in which I define onStart as follows: > > void onStart() { > connect_to_my_database(); // my application specific stuff > SocketInitiator::onStart(); > } > > I don't like this solution very much, so is there any better way to > insert > application specific code at the beginning of the socket initiator > thread? > > Regards, > Igor > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek > For a limited time only, get FREE Ground shipping on all orders of $35 > or more. Hurry up and shop folks, this offer expires April 30th! > http://www.thinkgeek.com/freeshipping/?cpg=12297 > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > |
From: <Igo...@ub...> - 2004-04-23 16:58:06
|
Hello, If I understand correctly, SocketInitiator spawns a separate thread. I would like to do something at the beginning of this thread, specifically to create a database session that I can use in my message handlers called from this thread (I wan't a separate session for each thread). However, all the interresting looking methods such as onStart, onCreate etc are private in SocketInitiator, they cannot be overriden. At this stage, I'm thinking of changing onStart to protected in SocketInitiator.h, creating a class MySocketInitiator derived from SocketInitiator in which I define onStart as follows: void onStart() { connect_to_my_database(); // my application specific stuff SocketInitiator::onStart(); } I don't like this solution very much, so is there any better way to insert application specific code at the beginning of the socket initiator thread? Regards, Igor |
From: SOL Z. <sol...@ya...> - 2004-04-17 22:23:54
|
So inorder to be sure of correct response for a message I have to actually read the fix-44 or use the FIXionary2003? --- SOL ZADEH <sol...@ya...> wrote: > Are there any STDs (or anything diagrammatically > similar) for the FIX message flows? > > Regards > Sol. > __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25¢ http://photos.yahoo.com/ph/print_splash |
From: Jean Z. <to_...@ya...> - 2004-04-16 15:13:34
|
Hello everyone, I found there is a thread safe queue in C++, it also provides in Java? Thanks a lot. Jean __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html |
From: SOL Z. <sol...@ya...> - 2004-04-16 03:00:07
|
Are there any STDs (or anything diagrammatically similar) for the FIX message flows? Regards Sol. __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html |
From: Jean Z. <to_...@ya...> - 2004-04-15 19:13:43
|
Thank you very much. I am working on Mac OS X 10.3. The example programs worked well on it. Now, I can start my own project. regards, Jean --- Oren Miller <or...@qu...> wrote: > Jean, > > On Mac OS X you don't have to do anything special to > run the Java API. > The build process will create a library called > libquickfix_jni.dylib, > instead of .so, but otherwise nothing is really > different. QuickFIX > has only been testing on Mac OS X 10.3 Panther, so I > can't speak to > earlier versions. The newest versions of the API > and Apple JVM should > work fine. I use QF Java on Mac OS X all the time > with no problems. > > --oren > > On Apr 14, 2004, at 1:15 PM, Jean Zhong wrote: > > > I read the JNI tutorial on Sun website. To invoke > JM > > in native applications, it seems totally different > > between Unix and Mac. In Mac, user should use an > API > > named JManager API. > > Did anybody use access quickfix from Java on Mac? > > > > Thanks a lot. > > Jean > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Tax Center - File online by April 15th > > http://taxes.yahoo.com/filing.html > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux > Tutorials > > Free Linux tutorial presented by Daniel Robbins, > President and CEO of > > GenToo technologies. Learn everything from > fundamentals to system > > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > _______________________________________________ > > Quickfix-users mailing list > > Qui...@li... > > > https://lists.sourceforge.net/lists/listinfo/quickfix-users > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux > Tutorials > Free Linux tutorial presented by Daniel Robbins, > President and CEO of > GenToo technologies. Learn everything from > fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html |
From: Oren M. <or...@qu...> - 2004-04-14 19:47:24
|
Jim Downs is going to be presenting at the SIMC conference focusing on Open Source for the Securities Industry. His presentation will be a high level discussion of QuickFIX, and the experiences we have learned going through the process of distributing it as Open Source. The conference is in New York and is being hosted by Goldman Sachs. You can get more information about the conference here: http://www.simc-inc.org/archive0304/opensource/index.htm If you are not an SIMC member, it does cost money, but not that much. We were asked to attend but are not being paid to be there. I'll be mulling around during the afternoon session, and will be available to field any questions if you can find me. This is a good opportunity to interact with others who are interested in expanding the presence of Open Source this industry. --oren |
From: Oren M. <or...@qu...> - 2004-04-14 18:56:41
|
Jean, On Mac OS X you don't have to do anything special to run the Java API. The build process will create a library called libquickfix_jni.dylib, instead of .so, but otherwise nothing is really different. QuickFIX has only been testing on Mac OS X 10.3 Panther, so I can't speak to earlier versions. The newest versions of the API and Apple JVM should work fine. I use QF Java on Mac OS X all the time with no problems. --oren On Apr 14, 2004, at 1:15 PM, Jean Zhong wrote: > I read the JNI tutorial on Sun website. To invoke JM > in native applications, it seems totally different > between Unix and Mac. In Mac, user should use an API > named JManager API. > Did anybody use access quickfix from Java on Mac? > > Thanks a lot. > Jean > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Tax Center - File online by April 15th > http://taxes.yahoo.com/filing.html > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > |
From: Jean Z. <to_...@ya...> - 2004-04-14 18:15:36
|
I read the JNI tutorial on Sun website. To invoke JM in native applications, it seems totally different between Unix and Mac. In Mac, user should use an API named JManager API. Did anybody use access quickfix from Java on Mac? Thanks a lot. Jean __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html |
From: QuickFIX <or...@qu...> - 2004-04-13 03:52:22
|
QuickFIX won't tell you when the socket breaks/connects per se. This=20 information is abstracted away because we try not to expose the socket=20= layer since FIX itself does not require the use of sockets and people=20 use other transports such as RV. What we do have are the onLogon and=20 onLogout methods inherited from the application. onLogout will be=20 called whenever the session is broken for any reason, whether it be a=20 proper logout sequence or a socket disconnect. When this callback is=20 invoked, you know the session has been dropped (gracefully or=20 otherwise). I've been considering whether this method should provide=20 more detailed information about the nature of the connection loss, but=20= so far this hasn't really been a big issue for anyone. The onLogon method of course tells you when you have successfully=20 established a connection and logged on. It does not tell you about=20 failed connection attempts and the like, though they are sent to the=20 logger interface. You can also see all the attempted logon messages in=20= the toAdmin method. I believe for most purposes, onLogon and onLogout does the trick. --oren On Apr 12, 2004, at 7:23 PM, Nikhil Bose wrote: > Hello, > =A0 > Is there any way to detect when Quickfix 1.5 has a broken TCP socket=20= > connection to the other FIX engine?=A0 I am using Quickfix 1.5 as an=20= > Initiator.=A0 And I would like to know as soon as the TCP connection=20= > with the other FIX engine is broken, and also when it reconnects.=A0=20= > What is the easiest way to get this information. > =A0 > Thanks, > Sanjoy |
From: Nikhil B. <ass...@ya...> - 2004-04-13 00:21:07
|
Hello, Is there any way to detect when Quickfix 1.5 has a broken TCP socket = connection to the other FIX engine? I am using Quickfix 1.5 as an = Initiator. And I would like to know as soon as the TCP connection with = the other FIX engine is broken, and also when it reconnects. What is = the easiest way to get this information. Thanks, Sanjoy |
From: QuickFIX <or...@qu...> - 2004-04-07 18:10:56
|
It is created when you run build_java.bat On Apr 7, 2004, at 11:45 AM, Shivakumar Keshavamurthy wrote: > runat_java.bat has a reference to at.jar. How can I build=A0 at.jar? > > Also when I run "runatjava.bat" I get the following message. > > <test name=3D'definitions/server/fix40/10_MsgSeqNumEqual.def'=20 > result=3D'failure' > > =A0 <message> > =A0=A0=A0 No connection could be made because the target machine = actively=20 > refused it. > - connect(2) > =A0=A0=A0 <line>3</line> > =A0 </message> > </test> > > Please let me know if I need to configure anything else. > > thanks > shivakumar |
From: Shivakumar K. <Shi...@in...> - 2004-04-07 16:43:59
|
runat_java.bat has a reference to at.jar. How can I build at.jar? Also when I run "runatjava.bat" I get the following message.=20 <test name=3D'definitions/server/fix40/10_MsgSeqNumEqual.def' = result=3D'failure' > <message> No connection could be made because the target machine actively = refused it. - connect(2) <line>3</line> </message> </test> Please let me know if I need to configure anything else. thanks shivakumar |
From: QuickFIX <or...@qu...> - 2004-04-06 19:32:59
|
Make sure you are using the correct BeginString, SenderCompID and TargetCompID. With the default configuration, the BeginString should be FIX.4.2, the SenderCompID should be either CLIENT1 or CLIENT2, and the TargetCompID should be TW --oren On Apr 6, 2004, at 12:35 PM, Shivakumar Keshavamurthy wrote: > Hi, > > I have downloaded the latest version of the quickfix. I am trying to > run the examples. > I am running 'Executor' (or ordermatch) and tradeclient. I can see > logon and admin messages exchanged between the client and the server. > > But when I tried to send an Order from tradeclient I am getting > 'Message Not Sent: Session Not Found' Message. > Please let me know if there is anything wrong in my setup or is there > any other way I can test the client and the server. > > thanks > shivakumar > > |
From: Shivakumar K. <Shi...@in...> - 2004-04-06 17:34:11
|
Hi, I have downloaded the latest version of the quickfix. I am trying to run = the examples. I am running 'Executor' (or ordermatch) and tradeclient. I can see logon = and admin messages exchanged between the client and the server. But when I tried to send an Order from tradeclient I am getting 'Message = Not Sent: Session Not Found' Message.=20 Please let me know if there is anything wrong in my setup or is there = any other way I can test the client and the server. thanks shivakumar=20 |
From: Jose M. <jos...@db...> - 2004-04-01 14:48:14
|
SGksDQogDQpoYXMgYW55b25lIGNhcnJpZWQgb3V0IGFueSBwZXJmb3JtYW5jZSBtZWFzdXJlcyBv biB0aGUgRklYIGVuZ2luZSwgZm9yIGV4YW1wbGUgaW4gdGVybXMgb2YgbWVzc2FnZXMgcGVyIHNl Y29uZD8NCiANCklmIHNvIEkgd291bGQgYXBwcmVjaWF0ZSBpdCBpZiB5b3UgY291bGQgcHJvdmlk ZSBpdCB0b2dldGhlciB3aXRoIHlvdXIgY29uZmlndXJhdGlvbi4NCiANClRoYW5rcw0KSm9zZQ0K |
From: Joel N. <jna...@tc...> - 2004-03-09 22:23:47
|
Oren, Heri, Thanks for the 411! However, like Oren said, it hasn't been touched in a while. Still, it = is being used as the reference implementation by the FIX Security = subcommittee so its worth investigating. With that said, stunnel is becoming more attractive. However, I need to sell it to some higher-ups by name-dropping organizations who have used = it in a production environment. Gents, would you know of any firms that use it with QuickFix? Or any = firm running FIX secured with stunnel over public networks for that matter. Heri, have you used it in production? Thanks in advance! Joel > -----Original Message----- > From: Oren Miller [mailto:ore...@ya...]=20 > Sent: Saturday, March 06, 2004 9:55 AM > To: jna...@tc...; 'H. Steuer' > Cc: qui...@li... > Subject: RE: [Quickfix-users] Re: Does QuickFix support SSL >=20 > Take a look at Poppy: >=20 > http://www.fixprotocol.org/cgi-bin/Workgroup.cgi?id=3D960506144 >=20 > Last link on the page. This is an open source FIX / SSL=20 > proxy written by Hugh Emberson who now works at CameronFIX. =20 > I havn't tried it but my understanding is you would point=20 > you're session over to this thing which will use SSL encoding=20 > within the proxy which connects to your counterparty. This=20 > should make it appear like a regular SSL encrypted FIX=20 > message requiring no special requirements from your counterparty. >=20 > Doesn't look like it's been updated in a few years, but from=20 > what I can tell it was left in a stable state. I think I'll=20 > add a link to it from the QuickFIX site. >=20 > --oren >=20 >=20 > --- Joel Natividad <jna...@tc...> > wrote: > > Heri, > >=20 > > We have looked at stunnel and it is very reliable and turn-key. > > Thing with it is that it takes two to tango and the other=20 > party needs=20 > > to buy into using stunnel. > >=20 > > We still want to run FIX over the public internet, but as you well=20 > > know, provisioning VPNs and getting network/security folks=20 > to buy into=20 > > these encryption technologies is like pulling teeth. > >=20 > > If the FIX messages are encrypted themselves, it's a moot=20 > discussion. > >=20 > > Thanks, > > Joel > >=20 > > > -----Original Message----- > > > From: H. Steuer [mailto:st...@st...] > >=20 > > > Sent: Thursday, March 04, 2004 6:06 PM > > > To: jna...@tc... > > > Subject: Re: [Quickfix-users] Re: Does QuickFix > > support SSL > > >=20 > > > Hello Joel, > > >=20 > > > what about using a ssl wrapper like stunnel? > > > works very reliable ... > > >=20 > > > regards, > > > heri > > >=20 > > >=20 > > > On Thu, 4 Mar 2004 15:29:35 -0500 > > > "Joel Natividad" <jna...@tc...> > > wrote: > > >=20 > > > > Eric, > > > > Our company has an interest in enabling > > protocol-level > > > encryption as well. > > > > How far have you managed to incorporate SSL > > support. > > > >=20 > > > > Perhaps, we can collaborate and synchronize our > > efforts. > > > >=20 > > > > Best, > > > > Joel > > > >=20 > > > > > > --------------------------------------------------- > > > > Joel Natividad > > > > TCG Software Services > > > > jna...@tc... > > > > Personal Assistant: +1 (201) 356-5070 Fax: +1 > > (201) 356-5070 > > > >=20 > > > >=20 > > >=20 > > >=20 > > > -- > > > This e-mail may contain confidential and/or > > privileged information.=20 > > > If you are not the intended recipient (or have > > received this > > > e-mail in error) please notify the sender > > immediately and > > > destroy this e-mail. Any unauthorized copying, > > disclosure or > > > distribution of the material in this e-mail is > > strictly forbidden. > > >=20 > >=20 > >=20 > >=20 > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux=20 > > tutorial presented by Daniel Robbins, President and CEO of GenToo=20 > > technologies. Learn everything from fundamentals to system > > > = administration.http://ads.osdn.com/?ad_id=3D1470&alloc_id=3D3638&op=3Dcli= ck > > _______________________________________________ > > Quickfix-users mailing list > > Qui...@li... > > https://lists.sourceforge.net/lists/listinfo/quickfix-users >=20 > __________________________________ > Do you Yahoo!? > Yahoo! Search - Find what you=12re looking for faster=20 > http://search.yahoo.com >=20 |
From: Oren M. <ore...@ya...> - 2004-03-06 15:10:48
|
Take a look at Poppy: http://www.fixprotocol.org/cgi-bin/Workgroup.cgi?id=960506144 Last link on the page. This is an open source FIX / SSL proxy written by Hugh Emberson who now works at CameronFIX. I havn't tried it but my understanding is you would point you're session over to this thing which will use SSL encoding within the proxy which connects to your counterparty. This should make it appear like a regular SSL encrypted FIX message requiring no special requirements from your counterparty. Doesn't look like it's been updated in a few years, but from what I can tell it was left in a stable state. I think I'll add a link to it from the QuickFIX site. --oren --- Joel Natividad <jna...@tc...> wrote: > Heri, > > We have looked at stunnel and it is very reliable > and turn-key. > Thing with it is that it takes two to tango and the > other party needs to buy > into using stunnel. > > We still want to run FIX over the public internet, > but as you well know, > provisioning VPNs and getting network/security folks > to buy into these > encryption technologies is like pulling teeth. > > If the FIX messages are encrypted themselves, it's a > moot discussion. > > Thanks, > Joel > > > -----Original Message----- > > From: H. Steuer [mailto:st...@st...] > > > Sent: Thursday, March 04, 2004 6:06 PM > > To: jna...@tc... > > Subject: Re: [Quickfix-users] Re: Does QuickFix > support SSL > > > > Hello Joel, > > > > what about using a ssl wrapper like stunnel? > > works very reliable ... > > > > regards, > > heri > > > > > > On Thu, 4 Mar 2004 15:29:35 -0500 > > "Joel Natividad" <jna...@tc...> > wrote: > > > > > Eric, > > > Our company has an interest in enabling > protocol-level > > encryption as well. > > > How far have you managed to incorporate SSL > support. > > > > > > Perhaps, we can collaborate and synchronize our > efforts. > > > > > > Best, > > > Joel > > > > > > > --------------------------------------------------- > > > Joel Natividad > > > TCG Software Services > > > jna...@tc... > > > Personal Assistant: +1 (201) 356-5070 Fax: +1 > (201) 356-5070 > > > > > > > > > > > > -- > > This e-mail may contain confidential and/or > privileged information. > > If you are not the intended recipient (or have > received this > > e-mail in error) please notify the sender > immediately and > > destroy this e-mail. Any unauthorized copying, > disclosure or > > distribution of the material in this e-mail is > strictly forbidden. > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux > Tutorials > Free Linux tutorial presented by Daniel Robbins, > President and CEO of > GenToo technologies. Learn everything from > fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users __________________________________ Do you Yahoo!? Yahoo! Search - Find what youre looking for faster http://search.yahoo.com |
From: Joel N. <jna...@tc...> - 2004-03-04 23:29:10
|
Heri, We have looked at stunnel and it is very reliable and turn-key. Thing with it is that it takes two to tango and the other party needs to buy into using stunnel. We still want to run FIX over the public internet, but as you well know, provisioning VPNs and getting network/security folks to buy into these encryption technologies is like pulling teeth. If the FIX messages are encrypted themselves, it's a moot discussion. Thanks, Joel > -----Original Message----- > From: H. Steuer [mailto:st...@st...] > Sent: Thursday, March 04, 2004 6:06 PM > To: jna...@tc... > Subject: Re: [Quickfix-users] Re: Does QuickFix support SSL > > Hello Joel, > > what about using a ssl wrapper like stunnel? > works very reliable ... > > regards, > heri > > > On Thu, 4 Mar 2004 15:29:35 -0500 > "Joel Natividad" <jna...@tc...> wrote: > > > Eric, > > Our company has an interest in enabling protocol-level > encryption as well. > > How far have you managed to incorporate SSL support. > > > > Perhaps, we can collaborate and synchronize our efforts. > > > > Best, > > Joel > > > > --------------------------------------------------- > > Joel Natividad > > TCG Software Services > > jna...@tc... > > Personal Assistant: +1 (201) 356-5070 Fax: +1 (201) 356-5070 > > > > > > > -- > This e-mail may contain confidential and/or privileged information. > If you are not the intended recipient (or have received this > e-mail in error) please notify the sender immediately and > destroy this e-mail. Any unauthorized copying, disclosure or > distribution of the material in this e-mail is strictly forbidden. > |
From: Joel N. <jna...@tc...> - 2004-03-04 20:43:54
|
Eric, Our company has an interest in enabling protocol-level encryption as well. How far have you managed to incorporate SSL support. Perhaps, we can collaborate and synchronize our efforts. Best, Joel --------------------------------------------------- Joel Natividad TCG Software Services jna...@tc... Personal Assistant: +1 (201) 356-5070 Fax: +1 (201) 356-5070 |
From: Jason A. <jas...@ch...> - 2004-03-04 15:38:03
|
When building quickfix_net.dll using Visual Studio .NET 2003 I get the following: LINK : warning LNK4243: DLL containing objects compiled with /clr is not linked with /NOENTRY; image may not run correctly Being unfamiliar with mixed managed/unmanaged code, I read the following article: http://msdn.microsoft.com/library/default.asp?url=3D/library/en-us/dv_vst= echar t/html/vcconMixedDLLLoadingProblem.asp From article: "...versions 1.0 and 1.1 of the common language runtime loader can = encounter deadlock situations, even when the /noentry linker option is specified, = such as when unmanaged DLL exports or unmanaged VTable Fixups (VTFixups) are = part of a mixed DLL. These problems should be fixed in the next version of = the runtime..." Should I be worried about this? ------------------------------- Software Engineer =20 Chicago Trading Company (CTC) =20 Jas...@Ch... 312.863.8082 -----------------------------------------------------------=20 This email message is intended only for the addressee(s)=20 and contains information that may be confidential and/or=20 copyright. If you are not the intended recipient please=20 notify the sender by reply email and immediately delete=20 this email. Use, disclosure or reproduction of this email=20 by anyone other than the intended recipient(s) is strictly=20 prohibited. No representation is made that this email or=20 any attachments are free of viruses. Virus scanning is=20 recommended and is the responsibility of the recipient. Thank you. -----------------------------------------------------------=20 For more information on CTC, LLC please visit our website at:=20 http://www.chicagotrading.com. |
From: James C. D. <jc...@co...> - 2004-03-04 15:25:23
|
Joel, Thanks. I'll check out Ethereal. Jim James C. Downs Connamara Systems, LLC 53 W. Jackson Blvd Suite 1627 Chicago, IL 60604 312 - 282 - 7746 www.connamara.com _____ From: Joel Natividad [mailto:jna...@tc...] Sent: Thursday, March 04, 2004 9:00 AM To: ore...@ya...; jc...@co...; qui...@li...; qui...@li... Subject: RE: QuickFIX 1.7.0 Available Jim, You may want to check out Ethereal - an open-source protocol analyzer which I've found extremely helpful in debugging FIX. It has a built-in FIX filter and its sooo much easier than slogging thru logfiles. Just fire it up, and put in the string "FIX" in the filter field and you're set. And Oren, keep up the great work!!! BTW, is there an active wishlist? Also, you may want to think about mounting an instance of Bugzilla to engage the community better. I can help in this regard too, since we use Bugzilla extensively in our devt efforts and we've even customized it, borrowing some idears from the KDE Bugzilla instance (bugs.kde.org). I've found that Bugzilla becomes the de-facto wishlist and workflow manager in OSS projects that I participate in. Lastly, it would be great if the community comes together to put up a hosted Exchange Simulator for more robust testing of QuickFix based projects. Best Regards and more power to QuickFix! Joel --------------------------------------------------- Joel Natividad TCG Software Services jna...@tc... Personal Assistant: +1 (201) 356-5070 Fax: +1 (201) 356-5070 ======================================================== From: "James C. Downs" <jc...@co...> To: "'Oren Miller'" <ore...@ya...>, "'announcements QuickFIX'" <qui...@li...>, "'developers QuickFIX'" <qui...@li...>, "'users QuickFIX'" <qui...@li...> Date: Wed, 3 Mar 2004 08:06:20 -0600 Subject: [Quickfix-users] RE: [Quickfix-developers] QuickFIX 1.7.0 Available Oren, The new site looks great! Anne did a outstanding job. Thanks to her and ThoughtWorks.=20 I want to help with some of the initiatives (it looks like I might have = a little more time on my hands shortly :). For me the log viewer it tops = on my list. My eyes can't take looking at 65 meg log files anymore!=20 Jim =20 James C. Downs Connamara Systems, LLC 53 W. Jackson Blvd Suite 1627 Chicago, IL 60604 312 - 282 - 7746 <file://www.connamara.com> www.connamara.com |
From: Joel N. <jna...@tc...> - 2004-03-04 15:21:22
|
Jim, You may want to check out Ethereal - an open-source protocol analyzer which I've found extremely helpful in debugging FIX. It has a built-in FIX filter and its sooo much easier than slogging thru logfiles. Just fire it up, and put in the string "FIX" in the filter field and you're set. And Oren, keep up the great work!!! BTW, is there an active wishlist? Also, you may want to think about mounting an instance of Bugzilla to engage the community better. I can help in this regard too, since we use Bugzilla extensively in our devt efforts and we've even customized it, borrowing some idears from the KDE Bugzilla instance (bugs.kde.org). I've found that Bugzilla becomes the de-facto wishlist and workflow manager in OSS projects that I participate in. Lastly, it would be great if the community comes together to put up a hosted Exchange Simulator for more robust testing of QuickFix based projects. Best Regards and more power to QuickFix! Joel --------------------------------------------------- Joel Natividad TCG Software Services jna...@tc... Personal Assistant: +1 (201) 356-5070 Fax: +1 (201) 356-5070 ======================================================== From: "James C. Downs" <jc...@co...> To: "'Oren Miller'" <ore...@ya...>, "'announcements QuickFIX'" <qui...@li...>, "'developers QuickFIX'" <qui...@li...>, "'users QuickFIX'" <qui...@li...> Date: Wed, 3 Mar 2004 08:06:20 -0600 Subject: [Quickfix-users] RE: [Quickfix-developers] QuickFIX 1.7.0 Available Oren, The new site looks great! Anne did a outstanding job. Thanks to her and ThoughtWorks.=20 I want to help with some of the initiatives (it looks like I might have = a little more time on my hands shortly :). For me the log viewer it tops = on my list. My eyes can't take looking at 65 meg log files anymore!=20 Jim =20 James C. Downs Connamara Systems, LLC 53 W. Jackson Blvd Suite 1627 Chicago, IL 60604 312 - 282 - 7746 www.connamara.com |
From: James C. D. <jc...@co...> - 2004-03-03 14:19:44
|
Oren, The new site looks great! Anne did a outstanding job. Thanks to her and ThoughtWorks.=20 I want to help with some of the initiatives (it looks like I might have = a little more time on my hands shortly :). For me the log viewer it tops = on my list. My eyes can't take looking at 65 meg log files anymore!=20 Jim =20 James C. Downs Connamara Systems, LLC 53 W. Jackson Blvd Suite 1627 Chicago, IL 60604 312 - 282 - 7746 www.connamara.com -----Original Message----- From: qui...@li... [mailto:qui...@li...] On Behalf Of = Oren Miller Sent: Tuesday, March 02, 2004 10:35 PM To: announcements QuickFIX; developers QuickFIX; users QuickFIX Subject: [Quickfix-developers] QuickFIX 1.7.0 Available QuickFIX 1.7.0 is now available at the usual place: http://quickfix.thoughtworks.com/ Wait... did I say usual place. Not anymore since the fabulous Anne = Lewis over at ThoughtWorks had her way with it. She did a great job = redesigning the website. I mucked about with the formula a bit when creating the generator so if anything looks odd, it's all me. Make sure to refresh you're browsers so you don't pull up an old cache = of the site! Release notes are of course available: http://sourceforge.net/project/shownotes.php?group_id=3D37535&release_id=3D= 22112 1 What can I say? I know this one took longer than promised but I think = it is a really solid release.=20 FIX 4.4 for .NET, FreeBSD and Mac OS X, and well, just read the release notes. For java users, the package name has changed. Sorry! Release = notes explain. Seriously, if you are a Java or .NET users, it is particularly important = you read these release notes. I think this release is a milestone in that it really puts us where we = want to be for launching future initiatives. I've written a sort of summary = of where QuickFIX is and where I envision it might go in the future. It is available at the quickfix website. Please read it and give some feedback. QuickFIX is unique compared to = other engines in how open it's process is, take advantage! So many people helped on this version I don't even know where to begin. = I've tried to add everyone to the CONTRIBUTERS and THANKS files to = acknowledge their efforts. If you belong in one of these files please tell me! I = want to see everyone get appropriate credit. QuickFIX 1.6.0 was downloaded over 2000 times. We are getting record = amounts of downloads, webhits, and contributions. The companies that are using = and seriously considering QuickFIX is growing more impressive all the time. Thanks to everyone for making this project so sucessful. My hope is = that there would be a serious open alternative to the increasingly pricey fix engines associated with this "open" standard. I believe today we can say there is one. --oren __________________________________ Do you Yahoo!? Yahoo! Search - Find what you=12re looking for faster = http://search.yahoo.com ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software = kit from IBM. Click Now! http://ads.osdn.com/?ad_id=3D1356&alloc_id=3D3438&op=3Dclick _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers |
From: Oren M. <ore...@ya...> - 2004-03-03 04:47:48
|
QuickFIX 1.7.0 is now available at the usual place: http://quickfix.thoughtworks.com/ Wait... did I say usual place. Not anymore since the fabulous Anne Lewis over at ThoughtWorks had her way with it. She did a great job redesigning the website. I mucked about with the formula a bit when creating the generator so if anything looks odd, it's all me. Make sure to refresh you're browsers so you don't pull up an old cache of the site! Release notes are of course available: http://sourceforge.net/project/shownotes.php?group_id=37535&release_id=221121 What can I say? I know this one took longer than promised but I think it is a really solid release. FIX 4.4 for .NET, FreeBSD and Mac OS X, and well, just read the release notes. For java users, the package name has changed. Sorry! Release notes explain. Seriously, if you are a Java or .NET users, it is particularly important you read these release notes. I think this release is a milestone in that it really puts us where we want to be for launching future initiatives. I've written a sort of summary of where QuickFIX is and where I envision it might go in the future. It is available at the quickfix website. Please read it and give some feedback. QuickFIX is unique compared to other engines in how open it's process is, take advantage! So many people helped on this version I don't even know where to begin. I've tried to add everyone to the CONTRIBUTERS and THANKS files to acknowledge their efforts. If you belong in one of these files please tell me! I want to see everyone get appropriate credit. QuickFIX 1.6.0 was downloaded over 2000 times. We are getting record amounts of downloads, webhits, and contributions. The companies that are using and seriously considering QuickFIX is growing more impressive all the time. Thanks to everyone for making this project so sucessful. My hope is that there would be a serious open alternative to the increasingly pricey fix engines associated with this "open" standard. I believe today we can say there is one. --oren __________________________________ Do you Yahoo!? Yahoo! Search - Find what youre looking for faster http://search.yahoo.com |