Thread: [Quickfix-developers] Tibco Implementation
Brought to you by:
orenmnero
From: Jon D. <jd...@li...> - 2004-01-28 16:36:12
|
VGhpcyBtYXkgYmUgc29tZXdoYXQgb2ZmIHRvcGljIHNpbmNlIFF1aWNrRklYIGlzIGFuIG9wZW4g c291cmNlIHByb2plY3QsIGJ1dCBJIHdhcyB3b25kZXJpbmcgaWYgYW55b25lIGhhcyBzd2l0Y2hl ZCB0aGUgc29ja2V0IHRyYW5zcG9ydCBsYXllciB3aXRoIFRpYmNvIG9yIHNvbWV0aGluZyBzaW1p bGFyPw0KIA0KQW55IHBvaW50ZXJzIHdvdWxkIGJlIGFwcHJlY2lhdGVkLg0KIA0KVGhhbmtzLA0K IA0KSm9uIERhaGwNCg== |
From: Oren M. <ore...@ya...> - 2004-01-31 00:39:21
|
The engine was designed with this in mind, although I don't know that anyone has implemented it. Essentially new TibcoInitiator and TibcoAcceptor classes need to be created. Do you intend on using the point-to-point functionality to do this, or will you be broadcasting messages on subjects? --oren Jon Dahl <jd...@li...> wrote: This may be somewhat off topic since QuickFIX is an open source project, but I was wondering if anyone has switched the socket transport layer with Tibco or something similar? Any pointers would be appreciated. Thanks, Jon Dahl N×­zf¢+,¦ì¢·o!*lx*'ÛM8>·¦êÞ ßz·§qê':§N%°7¯zZ)éíjwH× ­«b¢tzØ^n·vØh|G%iËb¾+ræë¹ªòß§v¡z)m§ÿðÃ*lyÊ'¢¸?¢ÇgBèø±uëÞ^®ÉX§X¬µ ¢rGâÅׯzZ)z»%Ël²«qçè®§zØm¶?þX¬¶Ë(º·~àzw­þX¬¶ÏåËbú?ªèø±uëÞ^® --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! |
From: Caleb E. <ca...@bk...> - 2004-01-31 02:11:34
|
On Wed, Jan 28, 2004 at 10:36:05AM -0600, Jon Dahl wrote: > This may be somewhat off topic since QuickFIX is an open source > project, but I was wondering if anyone has switched the socket > transport layer with Tibco or something similar? Any pointers would > be appreciated. Thanks, Jon Dahl The big problem with pushing a FIX session over something datagram-oriented like TIB/RV is how do you do authentication? How can you tell who a message is really from? I'd be interested in peoples thoughts on this. -- Caleb Epstein | bklyn . org | A man of genius makes no mistakes. His errors cae at | Brooklyn Dust | are volitional and are the portals of bklyn dot org | Bunny Mfg. | discovery. | | -- James Joyce, "Ulysses" |
From: John E. L. <Joh...@ad...> - 2004-02-07 18:13:08
|
The subject can be derived off the FIX.<TargetCompId>.<SourceCompId> . Ex FIX.HRZG.INST for a message from INST to HRZG. And FIX.INST.HRZG for HRZG to INST messaging. HRZG could: 1) sub to FIX.HRZG.* and sort session msgs based on SourceCompId and dispatches to separate QuickFix Sessions objects. 2) better is Let tib do the sorting and create a session object for each Session in the Quick Fix config. Each session listens on a specific FIX.<TargetCompId>.<SourceCompId> config. John -----Original Message----- From: qui...@li... [mailto:qui...@li...] On Behalf Of Caleb Epstein Sent: Thursday, January 29, 2004 8:42 AM To: Jon Dahl Cc: qui...@li... Subject: Re: [Quickfix-developers] Tibco Implementation On Wed, Jan 28, 2004 at 10:36:05AM -0600, Jon Dahl wrote: > This may be somewhat off topic since QuickFIX is an open source > project, but I was wondering if anyone has switched the socket > transport layer with Tibco or something similar? Any pointers would > be appreciated. Thanks, Jon Dahl The big problem with pushing a FIX session over something datagram-oriented like TIB/RV is how do you do authentication? How can you tell who a message is really from? I'd be interested in peoples thoughts on this. -- Caleb Epstein | bklyn . org | A man of genius makes no mistakes. His errors cae at | Brooklyn Dust | are volitional and are the portals of bklyn dot org | Bunny Mfg. | discovery. | | -- James Joyce, "Ulysses" ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers |
From: Caleb E. <ca...@bk...> - 2004-02-09 04:39:48
|
On Sat, Feb 07, 2004 at 01:11:37PM -0500, John E. Lopez wrote: > The subject can be derived off the FIX.<TargetCompId>.<SourceCompId> . Oh I know it isn't hard to DO per se, but you pretty much lose all authentication guarantees when compares to a socket connection. Somone could start publishing on that subject and essentially hijack your FIX session. Broadcasting of the messages on RV adds a nice side benefit that more than one process can receive, log, route, enrich, etc. them, but the security and authentication issues scare me a bit. -- Caleb Epstein | bklyn . org | Charity begins at home. cae at | Brooklyn Dust | -- Publius Terentius Afer bklyn dot org | Bunny Mfg. | (Terence) |