MDB's are designed for asynchronous + decoupled + parallel message processing !!!
If your special use case does not fit into this scenario DO NOT abuse MDB's for something they are not designed for ! Even for a singleton MDB there is no guarantee for ordered (re-)delivery of messages and - even more worse- your application will not scale at all ! Rethink your application needs ! If you have to process multiple messages at once, put them all into one message instead of using separate messages. If this is not possible you might have to use a different application pattern (e.g. session\entity beans ) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840951#3840951 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840951 ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
