1 Reply Latest reply on Jan 17, 2007 8:56 AM by wdfink

    Lookup failed with TestClient

    wdfink

      playing around with EJB3 (first itme)

      I create a SimpleBean:

      @Stateless
      public class SimpleBean {
       public void aMethod() {
       // log something ...
       }
      }
      

      @Remote
      public interface Simple {
       public void aMethod();
      }
      


      If I deploy this, JBoss will give a message that it is deployed.
      in case of JBoss it should deployed with the full classname (SimpleBean.class.name()) for lookup.

      but I can't lookup with a JUnit test outside the JBoss