[jboss-user] [EJB/JBoss] - Load MDB on startup

2008-10-31 Thread travisb
Is there a way to configure JBoss to load MDB's at startup? By default the MDB's are not created until a message hits the queue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4186007#4186007 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [JBoss Messaging] - Load MDB on startup

2008-10-30 Thread travisb
Is there a way to configure JBoss to load MDB's at startup? By default the MDB's are not created until a message hits the queue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4185769#4185769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JBoss Messaging] - Re: Deadlocks with ClusterRoundRobinDistributor

2007-11-21 Thread travisb
I created a JIRA issue to attach the full thread dumps: http://jira.jboss.org/jira/browse/JBMESSAGING-1159 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106766#4106766 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=410

[jboss-user] [JBoss Messaging] - Deadlocks with ClusterRoundRobinDistributor

2007-11-20 Thread travisb
During volume testing with 2 nodes I now see these deadlocks in the thread dumps (platform AS 4.2.0.GA_CP01, JBM snapshot_stable 12-Nov-2007): Node 1: Found one Java-level deadlock: | = | "Messaging Timeout(3)-266": | waiting to lock monitor 0x7548e274 (object

[jboss-user] [JBoss Messaging] - Re: Connection caching

2007-11-08 Thread travisb
The DefaultMessageListenerContainer relates to the JmsTemplate in that it is equally resource intensive with a cache level of CACHE_NONE. Our client works with CACHE_CONSUMER, but with a level of CACHE_SESSION or less, consumption halts and we quickly receive the following stacktrace in the serv

[jboss-user] [JBoss Messaging] - Re: Connection caching

2007-11-08 Thread travisb
There is only one case where we use JmsTemplate to consume messages, and that is for the purpose of aggregation. For that case we may use jmsTemplate.execute(SessionCallback action, boolean startConnection) to circumvent the resource impact of jmsTemplate.receive(). We also use JmsTemplate as