Can a statless session bean acess EJBObject in ejbCreate method ? The
EJB specification lists getEJBObject and getEJBLocalObject under operations allowed in ejbCreate method.
I am under the impression that EJBOjbect is created when the client invokes create method on home. For a statless session bean however, ejbCreate could be invoked much earlier for a stateless session bean unrelated to any calls from the client.
So, how can getEJBObject be a valid operation in ejbCreate for a statless session bean ?