It finally worked! The problem was that the jndi references to the JMS queue and factory should have also been made at the MDB so as to be retrieved when the asynchronous execution thread would start ! With the X-Doclet like this :
| * @ejb.resource-ref | * res-ref-name="jms/TaskWaitingUserQueue" | * res-type="javax.jms.Queue" | * res-auth="Container" | * | * @jboss.resource-ref | * res-ref-name="jms/TaskWaitingUserQueue" | * jndi-name="queue/TaskWaitingUserQueue" | * | * @ejb.resource-ref | * res-ref-name="jms/MyXAQueueConnectionFactory" | * res-type="javax.jms.QueueConnectionFactory" | * res-auth="Container" | * | * @jboss.resource-ref | * res-ref-name="jms/MyXAQueueConnectionFactory" | * jndi-name="java:/JmsXA" | That was all.. :S View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3921936#3921936 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3921936 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
