Developer's Daily DevDirectory
  main | apple | java | perl | unix | dev directory | web log
 
 
 
devdaily.com directory : Java : Articles and Tutorials : RMI : Activation


Links
  • Making a UnicastRemoteObject Activatable - Demonstrates the steps for migrating an existing UnicastRemoteObject to an activatable object, by extending java.rmi.activation.Activatable. Primarily for developers who wish to change an existing class from being a sub-class of UnicastRemoteObject to being a sub-class of java.rmi.activation.Activatable. (JavaSoft)
  • Remote Object Activation - With the introduction of the class java.rmi.activation.Activatable and the RMI daemon, rmid, programs can be written to register information about remote object implementations that should be created and execute "on demand", rather than running all the time. (JavaSoft)
  • Using a MarshalledObject to create persistent data - The MarshalledObject class provides a flexible mechanism for passing persistence or initialization data through the ActivationDesc, registered with rmid, rather than hard-coding values into the implementation's class file. (JavaSoft)