Hi there! I'm trying to deploy a simple MDB, but I'm getting this error. 
Here's my deployment descriptors:

<ejb-jar>
  <display-name>MailCreatorEJB</display-name>
  <enterprise-beans>
    <message-driven>
      <display-name>MailCreator</display-name>
      <ejb-name>MailCreator</ejb-name>
      <ejb-class>mailcreator.MailCreatorBean</ejb-class>
      <transaction-type>Container</transaction-type>
      <message-driven-destination>
        <destination-type>javax.jms.Queue</destination-type>
      </message-driven-destination>
      <resource-ref>
        <res-ref-name>QCF</res-ref-name>
        <res-type>javax.jms.QueueConnectionFactory</res-type>
        <res-auth>Container</res-auth>
      </resource-ref>
      <resource-env-ref>
        <resource-env-ref-name>jms/MailQueue</resource-env-ref-name>
        <resource-env-ref-type>org.jboss.mq.server.jmx.Queue</resource-env-ref-type>
      </resource-env-ref>
    </message-driven>
  </enterprise-beans>
  <assembly-descriptor>
    <container-transaction>
      
        <ejb-name>MailCreator</ejb-name>
        <method-name>*</method-name>
      
      <trans-attribute>Required</trans-attribute>
    </container-transaction>
  </assembly-descriptor>
</ejb-jar>



  <enterprise-beans>
    <message-driven>
      <ejb-name>MailCreator</ejb-name>
      <destination-jndi-name>jms/MailQueue</destination-jndi-name>
       <resource-ref>
                <res-ref-name>QCF</res-ref-name>
                <jndi-name>QueueConnectionFactory</jndi-name>
        </resource-ref> 
    </message-driven>
  </enterprise-beans>


also added this to the jbossmq-destinations-service.xml


        <depends 
optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager
  

I still have the hsqld-ds configured and the drivers.

Any ideas?

Thanks

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

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


-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to