I found the problem and resolved it. Actually I was looking for 'JNDI' name in 
incorect format.

I was using following in my jboss-web.xml (in web application) and jboss.xml 
(in mdb);

Incorrect Reference

<resource-ref>
  |         <res-ref-name>jms/jmsConnectionFactory</res-ref-name>
  |         <res-type>javax.jms.ConnectionFactory</res-type>
  |         <jndi-name>wmq/myFC</jndi-name>
  | </resource-ref>

Where 'wmq/myFC' is connection factory I defined to use MQ Server adaptor. I 
edited the above part in both (In Web application and MDB) jboss-web.xml and 
jboss.xml a follows and it worked;

Correct Reference

<resource-ref>
  |         <res-ref-name>jms/jmsConnectionFactory</res-ref-name>
  |         <res-type>javax.jms.ConnectionFactory</res-type>
  |         <jndi-name>java:wmq/myFC</jndi-name>
  | </resource-ref>

Hope this will help someone in the future.

--
SJunejo

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

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

Reply via email to