If the data is to be consumed by other non Java applications then go for a more generic messaging systems. IBM MQ Series springs to mind. This offers a full JMS implementation, so you Java App can write to the queue, but it also offers API's in a range of languages and platforms ( C, C++, Cobol, etc etc on NT, Solaris, AIX, Mainframes etc ).
If you write your data as XML then any application will be able to read and process it regardless of platform or language -----Original Message----- From: Emmanuel Eze [mailto:[EMAIL PROTECTED]] Sent: 12 August 2002 17:32 To: JDJList Cc: 'Abhilash Nair' Subject: [jdjlist] RE: Any help would be HIGHLY appreiated No, see if u Use JMS , JMS server will be configured on ur App Server, one of ur java program will send the message to the JMS Server (Queue or Topic), then u can use Message Driven Bean to connect to other server retrive the data, all the code resides on ur server (which i assume is J2EE implementation) so there is nothing to run on the third party side from where ur planning to retrieve the data. -----Original Message----- From: Abhilash Nair [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 6:17 PM To: [EMAIL PROTECTED] Subject: Re: [jdjlist] RE: Any help would be HIGHLY appreiated YES have considered that model... but the place we need to connect to NEED NOT be Java based... could be any other technology. They would not understand if we send a JMS message! Based on some parameters that we need to send about the client, they will return the required data --- Emmanuel Eze <[EMAIL PROTECTED]> wrote: > Hi, > > From your question it seems you need to collect some > information outside > your architecture as soon as User Logs In ( I am > assuming that is your > application), if this is the Case then go for Java > Messaging Service (JMS) > asynchronous Model, it will definitely solve your > purpose. > > Regards, > Eze Emmanuel > SystemSpecs Limited > Lagos > Nigeria > > -----Original Message----- > From: Abhilash Nair [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 5:52 PM > To: JDJList > Subject: [jdjlist] Any help would be HIGHLY > appreiated > > > Hi All: > > We need to implement an asynchronous connection to > an > application which resides outside of our > architecture > (another organization) and need to maintain that > connection forever. > > We need to have this connection open all the time as > important data about clients logging in would reside > in that box. Hence, we need to go to that box and > retrieve data about the client as soon as the client > logs in asynchronously. > > I was wondering if anyone has implemented this in > any > other way, other than using the Java Connector > Architecture? > > Any suggestions would be most welcome and highly > appreciated. > > Thanks and Regards, > Abhi > > __________________________________________________ > Do You Yahoo!? > HotJobs - Search Thousands of New Jobs > http://www.hotjobs.com > > To change your membership options, refer to: > http://www.sys-con.com/java/list.cfm > > > To change your membership options, refer to: > http://www.sys-con.com/java/list.cfm __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com To change your membership options, refer to: http://www.sys-con.com/java/list.cfm To change your membership options, refer to: http://www.sys-con.com/java/list.cfm
