Hello,
Here is my ejb-jar.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 
2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd";>

<ejb-jar>

 
<enterprise-beans>

<!-- Session Beans -->

     <display-name>Dept Session Bean</display-name>
     <ejb-name>DeptFacade</ejb-name>
     com.msilm.msip.business.ejb.dept.DeptFacadeHome
     
<local-home>com.msilm.msip.business.ejb.dept.DeptFacadeLocalHome</local-home>
     com.msilm.msip.business.ejb.dept.DeptFacade
     com.msilm.msip.business.ejb.dept.DeptFacadeLocal
     <ejb-class>com.msilm.msip.business.ejb.dept.DeptFacadeBean</ejb-class>
     <session-type>Stateless</session-type>
     <transaction-type>Container</transaction-type>


</enterprise-beans>

<assembly-descriptor>
        
        <container-transaction>
         
            <ejb-name>DeptFacade</ejb-name>
            <method-name>*</method-name>
         
         <trans-attribute>Required</trans-attribute>
      </container-transaction>
        
</assembly-descriptor>

</ejb-jar>

Thanks in advance

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

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


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to