[ 
http://jira.jboss.com/jira/browse/JBAS-3508?page=comments#action_12341109 ] 
            
Anil Saldhana commented on JBAS-3508:
-------------------------------------
Rather than create individual JIRA issues for each failing test (due to the XDoclet
removal), I suggest create one JIRA issue only.
It took me 3-4 days before I could get all the tests working fine under Branch_4_0, when I
removed the xdoclet thing.
 org.jboss.test.aop.test.SimpleBeanUnitTestCase fails because
"ejb" is not bound
 -------------------------------------------------------------------------------
                 Key: JBAS-3508
                 URL: 
http://jira.jboss.com/jira/browse/JBAS-3508
             Project: JBoss Application Server
          Issue Type: Bug
      Security Level: Public(Everyone can see) 
          Components: Test Suite
    Affects Versions: JBossAS-5.0.0.Beta
         Environment: win xp
            Reporter: Jaroslaw Kijanowski
 org.jboss.test.aop.test.SimpleBeanUnitTestCase fails because "ejb" is not
bound, because of missing files in META-INF.
 Solution:
 copy following xml files to:
 testsuite\src\resources\aop\simpleejb\META-INF
 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 >
    <description><![CDATA[No Description.]]></description>
    <display-name>Generated by XDoclet</display-name>
    <enterprise-beans>
       <!-- Session Beans -->
       <session >
          <description><![CDATA[]]></description>
          <ejb-name>test/Simple</ejb-name>
          <home>org.jboss.test.aop.simpleejb.SimpleHome</home>
          <remote>org.jboss.test.aop.simpleejb.Simple</remote>
          <ejb-class>org.jboss.test.aop.simpleejb.SimpleBean</ejb-class>
          <session-type>Stateless</session-type>
          <transaction-type>Container</transaction-type>
       </session>
      <!--
        To add session beans that you have deployment descriptor info for, add
        a file to your XDoclet merge directory called session-beans.xml that contains
        the <session></session> markup for those beans.
      -->
       <!-- Entity Beans -->
      <!--
        To add entity beans that you have deployment descriptor info for, add
        a file to your XDoclet merge directory called entity-beans.xml that contains
        the <entity></entity> markup for those beans.
      -->
       <!-- Message Driven Beans -->
      <!--
        To add message driven beans that you have deployment descriptor info for, add
        a file to your XDoclet merge directory called message-driven-beans.xml that
contains
        the <message-driven></message-driven> markup for those beans.
      -->
    </enterprise-beans>
    <!-- Relationships -->
    <!-- Assembly Descriptor -->
    <assembly-descriptor >
      <!--
        To add additional assembly descriptor info here, add a file to your
        XDoclet merge directory called assembly-descriptor.xml that contains
        the <assembly-descriptor></assembly-descriptor> markup.
      -->
    <!-- finder permissions -->
    <!-- transactions -->
    <container-transaction >
       <method >
          <ejb-name>test/Simple</ejb-name>
           <method-name>*</method-name>
        </method>
        <trans-attribute>Required</trans-attribute>
     </container-transaction>
    <!-- finder transactions -->
    </assembly-descriptor>
 </ejb-jar>
 ************************************
 ************************************
 jboss.xml:
 ******************
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 3.0//EN"
"http://www.jboss.org/j2ee/dtd/jboss_3_0.dtd">
 <jboss>
    <enterprise-beans>
      <!--
        To add beans that you have deployment descriptor info for, add
        a file to your XDoclet merge directory called jboss-beans.xml that contains
        the <session></session>, <entity></entity> and
<message-driven></message-driven>
        markup for those beans.
      -->
       <session>
          <ejb-name>test/Simple</ejb-name>
          <jndi-name>ejb/test/Simple</jndi-name>
       </session>
    </enterprise-beans>
    <resource-managers>
    </resource-managers>
 </jboss> 
-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: 
http://www.atlassian.com/software/jira