Let's see a simple example: There is machine A and B, both send message to destination. You send message from A first. At that time the network from A to destination is broken. Then you send message from machine B. At that time the network between B and destination is good. Then message from B arrives first. When the connection between A and destination is up and running again, your first message will be delivered (guaranteed by JMS) and arrive late.
--- William Ferguson <[EMAIL PROTECTED]> wrote: > AFAIK a JMSQueue not only guarantees delivery but also guarantees to > delivery the messages in the same order in which they were added to the > queue. > > IMO JMS would make a fine log delivery mechanism. > > William > > > > -----Original Message----- > > From: Wei Jiang [mailto:[EMAIL PROTECTED]] > > Sent: Friday, 9 August 2002 10:34 > > To: [EMAIL PROTECTED] > > Subject: Re: Distributed Logging > > > > > > Nothing will be lost with JMS. It guarantees delivery, but does not > > guarantee timing. Your logging will not be chronological. > > > > > > --- Juan Pablo Lorandi <[EMAIL PROTECTED]> wrote: > > > If you're using log4j, alternatively, you can start a > > SocketNode on a PC > > > on the network. It will listen to LoggingEvent from all the > > machines you > > > wish and dump into a file. It will be less expensive on network > > > resources than JMS and it's easier to setup. On the other > > hand, I think > > > it's less likely that logging events will be lost with JMS. > > > > > > My 2c, > > > > > > Juan Pablo Lorandi > > > Chief Software Architect > > > Code Foundry Ltd. > > > [EMAIL PROTECTED] > > > > > > Barberstown, Straffan, Co. Kildare, Ireland. > > > Tel: +353-1-6012050 Fax: +353-1-6012051 > > > Mobile: +353-86-2157900 > > > www.codefoundry.com > > > > > > > > > > -----Original Message----- > > > > From: A mailing list for Enterprise JavaBeans development > > > > [mailto:[EMAIL PROTECTED]] On Behalf Of Jay Wagner > > > > Sent: Thursday, August 08, 2002 2:17 PM > > > > To: [EMAIL PROTECTED] > > > > Subject: Re: Distributed Logging > > > > > > > > > > > > Vikram, > > > > > > > > If I assume you are using log4j or something such as that, > > > > you can implement the logging using JMS providing a > > > > JMSAppender which you can have various parties subscribe to > > > > the logging topics. > > > > > > > > Jay Wagner > > > > Sybase Inc. > > > > > > > > ----- Original Message ----- > > > > From: "Vikram Naik" <[EMAIL PROTECTED]> > > > > To: <[EMAIL PROTECTED]> > > > > Sent: Thursday, August 08, 2002 1:03 AM > > > > Subject: Distributed Logging > > > > > > > > > > > > > Hello All, > > > > > > > > > > We have a requirement for distributed logging. > > i.e. though > > > > > the > > > > business > > > > > entities are deployed at different locations the log > > file should be > > > > > generated at one place. Is that possible??? > > > > > > > > > > TIA > > > > > Vikram Naik > > > > > > > > > > > > > > ============================================================== > > > > ============= > > > > > To unsubscribe, send email to [EMAIL PROTECTED] and > > > > include in the > > > > body > > > > > of the message "signoff EJB-INTEREST". For general help, > > > > send email > > > > > to [EMAIL PROTECTED] and include in the body of the message > > > > > "help". > > > > > > > > > > > > > ============================================================== > > > > ============= > > > > To unsubscribe, send email to [EMAIL PROTECTED] and > > > > include in the body of the message "signoff EJB-INTEREST". > > > > For general help, send email to [EMAIL PROTECTED] and > > > > include in the body of the message "help". > > > > > > > > > > > > ============================================================== > > ============= > > > To unsubscribe, send email to [EMAIL PROTECTED] and > > include in the body > > > of the message "signoff EJB-INTEREST". For general help, > > send email to > > > [EMAIL PROTECTED] and include in the body of the message "help". > > > > > > > > > __________________________________________________ > > Do You Yahoo!? > > HotJobs - Search Thousands of New Jobs > > http://www.hotjobs.com > > > > ============================================================== > > ============= > > To unsubscribe, send email to [EMAIL PROTECTED] and > > include in the body > > of the message "signoff EJB-INTEREST". For general help, > > send email to > > [EMAIL PROTECTED] and include in the body of the message "help". > > > > > > =========================================================================== > To unsubscribe, send email to [EMAIL PROTECTED] and include in the body > of the message "signoff EJB-INTEREST". For general help, send email to > [EMAIL PROTECTED] and include in the body of the message "help". > __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff EJB-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
