The JMS/JCA adapter is not meant to be used outside of the application server. It is
specifically for EJB and Servlets that need JMS XA. For JMS outside of the server you need
to use something like the following:
|
| QueueConnectionFactory qcf =
(QueueConnectionFactory)ctx.lookup("ConnectionFactory");
|
The "ConnectionFactory" binding is the generic ConnectionFactory meant to be
used outside of the container. Also, you should remove the
| <use-java-context>false</use-java-context>
|
From you *-ds.xml file.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042069#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...