Is it possible to invoke multiple Session Beans from one Session Bean, using Reflection?
Created May 7, 2012
Viral Shah You use reflection when you actually instantiate the objects or invoke the method.
In the EJB Scenario Beans invoke other Beans as clients. The client only looks up the objects (not instantiating) and the operations are invoked on the stubs only.
In the EJB Scenario Beans invoke other Beans as clients. The client only looks up the objects (not instantiating) and the operations are invoked on the stubs only.
So, no question of reflection :)