I have two ear apps (EJB 3.0) deployed on Jboss 5.1. The SLSB from application A calls the remote SLSB from application B via the @EJB annotation. Everything works fine until I redistribute application B. Then the bean application from A tries to call one of B, and its link turns into null.
I believe that SLSBs are merged and links are entered at creation time, and after redistribution these proxies are not updated in any way.
How can I handle this? Is it possible to intercept this bean interceptor and check if all annotated links are null?
source
share