[jboss-cvs] JBossAS SVN: r79789 - projects/ejb3/trunk/testsuite/src/test/resources/test/service/META-INF.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 21 02:20:17 EDT 2008


Author: ALRubinger
Date: 2008-10-21 02:20:17 -0400 (Tue, 21 Oct 2008)
New Revision: 79789

Modified:
   projects/ejb3/trunk/testsuite/src/test/resources/test/service/META-INF/ejb-jar.xml
Log:
[EJBTHREE-1490] Fix service tests failing due to incomplete EJB2.x View, should be "business-remote" in ejb-jar.xml but was "remote"

Modified: projects/ejb3/trunk/testsuite/src/test/resources/test/service/META-INF/ejb-jar.xml
===================================================================
--- projects/ejb3/trunk/testsuite/src/test/resources/test/service/META-INF/ejb-jar.xml	2008-10-21 04:20:38 UTC (rev 79788)
+++ projects/ejb3/trunk/testsuite/src/test/resources/test/service/META-INF/ejb-jar.xml	2008-10-21 06:20:17 UTC (rev 79789)
@@ -10,7 +10,7 @@
    <enterprise-beans>
       <session>
          <ejb-name>SessionBean</ejb-name>
-         <remote>org.jboss.ejb3.test.service.SessionRemote</remote>
+         <business-remote>org.jboss.ejb3.test.service.SessionRemote</business-remote>
          <ejb-class>org.jboss.ejb3.test.service.SessionBean</ejb-class>
          <session-type>Stateless</session-type>
          <transaction-type>Container</transaction-type>




More information about the jboss-cvs-commits mailing list