> In order to use an EJB, I believe these are the steps you are following
> (assuming server side code is all deployed and happy)
[quoted text clipped - 12 lines]
> -cheers,
> Manish
yes ...its clear now.
thanks
i have question on your comments though.
you mentioned ,
"narrow the reference to home interface if it is remote"
I think , in EJB 2.0 we dont need to narrow it ...we dont need to use
portableremoteobject.narrow() method .we will do the direct casting to
home interface....am i right ? we do it for EJB 1.1
Manish Pandit - 25 Oct 2006 18:27 GMT
Hi,
You have to narrow the reference as long as it is *remote*. The
narrowing concept is carried forward from the CORBA days, and anything
dealing with IIOP has to be narrowed. You do not need the narrow() step
if you are dealing with local interfaces (inter-JVM).
-cheers,
Manish
gk - 26 Oct 2006 11:14 GMT
Thank you Manish.
it was very much helpful.
> Hi,
>
[quoted text clipped - 5 lines]
> -cheers,
> Manish