public void lookupStatefulBean() throws TestFailureException {
    try {
      try {
        BasicStatefulHome home =
            (BasicStatefulHome) ejbContext.lookup("stateless/beanReferences/stateful");
        Assert.assertNotNull("The EJBHome looked up is null", home);

        BasicStatefulObject object = home.createObject("Enc Bean");
        Assert.assertNotNull("The EJBObject is null", object);
      } catch (Exception e) {
        Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage());
      }
    } catch (AssertionFailedError afe) {
      throw new TestFailureException(afe);
    }
  }
Пример #2
0
  public void lookupStatefulBean() throws TestFailureException {
    try {
      try {
        final InitialContext ctx = new InitialContext();
        Assert.assertNotNull("The InitialContext is null", ctx);

        final BasicStatefulHome home =
            (BasicStatefulHome)
                javax.rmi.PortableRemoteObject.narrow(
                    ctx.lookup("java:comp/env/stateless/beanReferences/stateful"),
                    BasicStatefulHome.class);
        Assert.assertNotNull("The EJBHome looked up is null", home);

        final BasicStatefulObject object = home.createObject("Enc Bean");
        Assert.assertNotNull("The EJBObject is null", object);
      } catch (final Exception e) {
        Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage());
      }
    } catch (final AssertionFailedError afe) {
      throw new TestFailureException(afe);
    }
  }