I have a question to access stateful session bean:
In my service locator, I can either cache the EJBHome or Handle for EJBObject. So when the client wants to access the session bean, it can call the delegate and the call the service locator to either getHandle.getEJBObject(), or getRemoteHome.create().
What are the pros and cons for these 2 approach?
Thanks,