How does HomeProxy work?
Would someone describe the whole scenario from binding .....
class JRMPContainerInvoker
........
rebind( context, container.getBeanMetaData().getJndiName(),
((ContainerInvokerContainer)container).getContainerInvoker().getEJBHome());
// Bind a bare bones invoker in the JNDI invoker naming space
rebind( context, "invokers/"+container.getBeanMetaData().getJndiName(),
((ContainerInvokerContainer)container).getContainerInvoker());
........
until client try to access the EJBHome and EJBObject?
Thanks,