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

[686 byte] By [johnleung] at [2007-9-26 2:14:34]
# 1
This would be done by the container and is transparent to the client. Most app servers support "hot deploy" where you can deploy beans while the server is running. This requires dynamic class loading.
swatdba at 2007-6-29 9:10:39 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...