Actually.. I understood it was working when  you were doing JmsXA... I'm sorry. 
Just ignore the last post.

Well.. Anyway.. I don't know how Spring works.. you need to make it use 
java:/JmsXA.  You will need to make the right configuration at spring.

Maybe some other user might help you here... but your best choice would be to 
ask help at some spring user's forum.

Or maybe.. you don't need Spring at all to make those sends. From what I have 
seen.. spring doesn't help you much on JMS. If I were you i would just :

  | ConnectionFactory cf = (ConnectionFactory)jndi.lookup("java:/JmsXA");
  | Connection conn = cf.createConnection(...);
  | Session sess = conn.createSession(...);
  | ....
  | 
  | etc, etc... etc...

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160585#4160585

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4160585
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to