Here is the ejb-jar.xml and the jboss.xml.  I am getting a message that says I cannot 
find "queue/MyMessageBean".  In the configuration I am trying to point the Message 
Bean to "queue/TestQueue".

ejb-jar.xml

  | <ejb-jar>
  | <description>
  | Message Driven Bean EJB
  | </description>
  | <enterprise-beans>
  |     <message-driven>
  |       <display-name>MyMessageBean</display-name>
  |       <ejb-name>MyMessageBean</ejb-name>
  |       <ejb-class>com.hott.ejb.MyMessageBean</ejb-class>
  |       <transaction-type>Container</transaction-type>
  |       <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
  |       <message-driven-destination>
  |         <destination-type>javax.jms.Queue</destination-type>
  |       </message-driven-destination>
  |     </message-driven>
  | </enterprise-beans>
  | </ejb-jar>
  | 

jboss.xml


  | <jboss>
  |    <enterprise-beans>
  |       <message-driven>
  |          <ejb-name>MyMessageBean</ejb-name>
  |          <destination-jndi-name>queue/testQueue</destination-jndi-name>
  |       </message-driven>
  |    </enterprise-beans>
  | </jboss>
  | 

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3849996


-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to