1 Reply Latest reply on Jul 27, 2007 12:52 PM by alrubinger

    Reciprocal dependency injection with @EJB

    icordoba

      Hi there,
      how can I get a dependency injection using @EJB in two Stateless Session beans which each one needs a reference to the other one?
      I get a NOTYETINSTALLED status when just injecting in eachone the reference to the otherone:

      In UserManager:
      @EJB PortalManagerLocal portalmanager;

      in PortalManager:
      @EJB UserManagerLocal usermanager;

      Thanks,
      Ignacio