Source Code : EJB Tutorial from JBoss: message driven bean deployment descriptor

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

EJB Tutorial from JBoss: message driven bean deployment descriptor


File: ejb-jar.xml

<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar
        xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                            http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd"
        version="3.0">
   <description>JBoss Message Driven Bean Tutorial</description>
   <display-name>JBoss Message Driven Bean Tutorial</display-name>
   <enterprise-beans>
      <message-driven>
     <ejb-name>ExampleMDB</ejb-name>
     <ejb-class>org.jboss.tutorial.mdb_deployment_descriptor.bean.ExampleMDB</ejb-class>
         <transaction-type>Bean</transaction-type>
         <message-destination-type>javax.jms.Queue</message-destination-type>
       <activation-config>   
          <activation-config-property>
            <activation-config-property-name>acknowledgeMode</activation-config-property-name>
            <activation-config-property-value>AUTO_ACKNOWLEDGE</activation-config-property-value>
          </activation-config-property>
        </activation-config>
      </message-driven>
   </enterprise-beans>
</ejb-jar>


File: jboss.xml

<?xml version="1.0" encoding="utf-8"?>
<jboss
        xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                            http://www.jboss.org/j2ee/schema/jboss_5_0.xsd"
        version="3.0">

   <enterprise-beans>
      <message-driven>
         <ejb-name>ExampleMDB</ejb-name>
         <destination-jndi-name>queue/tutorial/example</destination-jndi-name>
      </message-driven>
   </enterprise-beans>
</jboss>



           
       

Thank with us