Hi,
I have a problem in understanding the sequence order of CREATE<METHOD>
in Session Bean.
According to the OID of creation of a session bean. EJBObject was instaniated before invoking setSessionContext( ).
However, why NO EJBObject was attached to the sessionContext in
setSessionContext() while the EJBObject suddenly appears in the
ejbCreate() method?
This is strange to me because EJBHome run the ejbCreate() method
immediately after the setSessionContext().(without any hints that
any other thing has been run in between)
I am wondering if the CONTAINER has done something to the sessionContext
before running ejbCreate()?
And what is the reason behind not attaching the EJBObject to the
sessionContext in the setSessionContext method??
Thanks for your help~~~~~