[jboss-cvs] JBossAS SVN: r74760 - trunk/server/src/main/org/jboss/deployment/plugin.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jun 17 23:35:21 EDT 2008


Author: scott.stark at jboss.org
Date: 2008-06-17 23:35:21 -0400 (Tue, 17 Jun 2008)
New Revision: 74760

Modified:
   trunk/server/src/main/org/jboss/deployment/plugin/LegacyEjb3JndiPolicy.java
Log:
Change the ejb3 home binding to ejbName/home from baseJndiName+"Home".

Modified: trunk/server/src/main/org/jboss/deployment/plugin/LegacyEjb3JndiPolicy.java
===================================================================
--- trunk/server/src/main/org/jboss/deployment/plugin/LegacyEjb3JndiPolicy.java	2008-06-18 02:22:01 UTC (rev 74759)
+++ trunk/server/src/main/org/jboss/deployment/plugin/LegacyEjb3JndiPolicy.java	2008-06-18 03:35:21 UTC (rev 74760)
@@ -135,10 +135,9 @@
          case REMOTE_HOME:
             if(is3x)
             {
-               // TODO: we're not there yet
-               //jndiName = baseJndiName + "/home";
+               jndiName = ejbName + "/home";
                // ejb3-core 0.1.0 behavior
-               jndiName = baseJndiName + "Home";
+               //jndiName = baseJndiName + "Home";
             }
             else
                jndiName = baseJndiName;




More information about the jboss-cvs-commits mailing list