Is Dynamic Class Loading(RMI) Possible in EJB?
In Java RMI,it allows dynamic class loading,that is when the stub and interface class files are modified by the server,the client side can download the updated stub and inteface classes.
As the remote interface of EJB extends Javax.ejb.EJBObject which in turn extends java.rmi.remote.Also the Home interface of EJB extends
javax.ejb.EJBHome which also extends java.rmi.remote.
Therefore I wonder if EJB also supports dynamic class
loading as RMI does.If yes,how to do so?Is it the responsibility of the Application Servers and transparent
to client? If No,then is this a defect in EJB?
Thank you very much in advance!!
John

