posted 18 years ago
Hi
I am not an expert in j2ee, I have just started learning it but i would like to tell you what i learnt till this time
the home interface, be it local or remote is used to invoke methods on the EJB without creating it and it also contains the DB acces methods, EJB creation methods and home methods that are common to all instances of EJB hence home methods can't access instance fields of EJB
on the other hand local and remote interfaces are used to invoke bussiness methods specific to an instance of EJB this can only be done after creating an EJB instance using ejbCreate...() in home method
and for local and remote interfaces; the clients in same jvm may use local interfaces to improve performance but just remote interfaces will also do the job with performance penalty.