Re: JMS Alternative

2006-08-18 Thread Feris Thia
Hi Richard, Ronald, Nikola, and Filip Thanks for all the answers. I now get clearer for my solution, it is clearly has nothing to do with Tomcat but in my application design. -- Regards, Feris PT. Putera Handal Indotama JL. KH. Moh. Mansyur No. 11 Blok B.8-12 Telp. +62-21-631 6688 (Hunting)

Re: JMS Alternative

2006-08-17 Thread Filip Hanik - Dev Lists
use qmail or one of those email frameworks, yes, you can access it using the JavaMail API you'd still need logic to handle bounces etc, so you do have some work ahead of you Feris Thia wrote: Hi All, Is there any alternative JMS api in Tomcat ? And how can I implement multi threading in

RE: JMS Alternative

2006-08-16 Thread Richard Mixon
If you are wanting to send email, you probably are interested in the Java Mail API - not the JMS API - they are for (usually) different purposes. However one could conceivably use JMS as a conduit between the various components of such a system (e.g. email assembly, delivery and the MTA).

Re: JMS Alternative

2006-08-16 Thread Feris Thia
Hi Richard, Like to thank for the feedback. Yes, I realized that it's quite challenging. Hm, ok.. if I may do so... what kind of technology stacks (API) that I need to ? Feris On 8/16/06, Richard Mixon [EMAIL PROTECTED] wrote: If you are wanting to send email, you probably are interested in

Re: JMS Alternative

2006-08-16 Thread Ronald Klop
Before asking about an optimized multithreaded e-mail application on a mailinglist for a webserver you should make it clear what you are doing. Maybe the non-optimized singlethreaded e-mail loop is fast enough for you. It wil save you a lot of time debugging. How much e-mail are you sending?