Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have generic question on using JMS provided by JBoss 5.1.

I deploy my JEE application (implemeneted using Spring Framework) on JBoss 5.1. The application is using Spring to consume messages from JMS queues (DefaultMessageListenerContainer) and also sends messages to JMS destinatiosn using Spring's JmsTemplate. What is important here is that the application uses 2PC (JTA and XA). Furthermore there is no MDBs in the application.

Looking at JBoss 5.1 configuration there is several ConnectionFactories available in JNDI:

  • java:/JmsXA
  • java:/ConnectionFactory
  • java:/XAConnectionFactory
  • java:/ClusteredConnectionFactory
  • java:/ClusteredXAConnectionFactory
  • ConnectionFactory
  • XAConnectionFactory
  • ClusteredConnectionFactory
  • ClusteredXAConnectionFactory

I was wondering which one I should be using in my configuration. I always used the java:/JmsXA one, but I'm not too sure if this is a best choice especially for clustered environment.

Can anyone shed some light onto the subject, please?

share|improve this question

1 Answer

up vote 0 down vote accepted

The interesting ones are in deploy/messaging/jms-ds.xml

  • java:/JmsXA - "use this to get transacted JMS in beans"
  • java:/XAConnectionFactory - "Currently pointing to a non-clustered ConnectionFactory"

Looks to me like java:/JmsXA is definitely the one to use.

share|improve this answer
What about deploy/messaging/connection-factories-service.xml? There is the rest of the factories form the list. And there is one commented as "A clustered connection factory that supports automatic failover and load balancing of created connections". Isn't that suitable? – Tomasz Blachowicz Sep 7 '10 at 8:53
@pregzt: No, because they're not XA-capable. – skaffman Sep 7 '10 at 11:22
what about the factories in deploy/messaging/connection-factories-service.xml called ClusteredXAConnectionFactory (or java:/ClusteredXAConnectionFactory)? The XA in the name would imply that they are XA-capable. The comment for it also says: "A clustered connection factory that supports automatic failover and load balancing of created connections. This factory is not suitable to be used by MDBs." Given that the OP is not using MDBs I would suggest that this is the preferred factory, especially if using clustering. – mluisbrown Feb 2 '11 at 16:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.