1 2 Previous Next 15 Replies Latest reply on Jun 11, 2008 4:00 AM by alesj

    DeploymentScopeBaseName from JAR prepending JNDI Name

    alrubinger

      From JNDIView, we've got:

      +- ejbthree1066 (class: org.jnp.interfaces.NamingContext)
       | +- CalculatorBean (class: org.jnp.interfaces.NamingContext)
       | | +- remote (proxy: $Proxy96 implements interface org.jboss.ejb3.proxy.JBossProxy,interface org.jboss.ejb3.test.ejbthree1066.Subtractor,interface org.jboss.ejb3.test.ejbthree1066.Adder)


      Previously, this looked like "ejbName/remote", and I don't see any discussions on the forum for "jarName/ejbName/remote".

      The PackagingBasedJndiBindingPolicy.getDefaultRemoteJndiName() is prepending the DeploymentScopeBaseName:

      String name = summary.getEjbName() + PackagingBasedJndiBindingPolicy.JNDI_SUFFIX_REMOTE;
       if (summary.getDeploymentScopeBaseName() != null)
       name = summary.getDeploymentScopeBaseName() + "/" + name;
       return name;


      We need this to uniquely scope EARs, but is this the desired behaviour for JAR deployments? Another issue affecting a large percentage of our TestSuite. :)

      If correct, I'll update the tests, if incorrect, we'll fix.

      S,
      ALR


        1 2 Previous Next