Home » Tutorials » Java Programming » Class Loading Issues In Java RMI And Jini Network Technology
Class Loading Issues In Java RMI And Jini Network Technology
1045
Category : Tutorials » Java Programming
. on objects hosted within remote. Java processes. Jini extends the Java RMI programming model to support a . neither Java RMI nor Jini would be possible. .
Download File Free PDF eBooks Download Tutorials Java Programming
Abstract Java class loading plays a key role in the Java Remote Method Invo- cation (Java RMI) and Jini architectures by enabling code mobility overthe network. However, it has also saddled these architectures with a setof type compatibility and code downloading issues that commonly resultin run-time errors and programmer confusion. This paper describes theJava RMI class loading model and examines its ramifications.
Class loading is a powerful and distinguishing feature of the Java platform. Itenables Java processes to load application and system code at run time froma variety of sources, such as the local file system, a remote web server, or anin-memory buffer. It supports many diverse uses: remotely published Java ap-plets, pluggable application containers, code instrumentation, on the fly softwareupgrades, and run-time code generation, among others. Two interrelated architectures that heavily utilize class loading are Java Remote Method Invocation (Java RMI) and Jini network technology. Java RMI provides the ability to invoke methods on objects hosted within remoteJava processes. Jini extends the Java RMI programming model to support amore full-fledged notion of distributed services, incorporating both client- andserver-side computation, that can be discovered and used in an ad-hoc mannerover the network. Both Java RMI and Jini fundamentally rely on passing Javaobjects between Java processes, where the executable code for a transmittedobject may not be preinstalled in its destination. Supporting this form of objecttransfer requires dynamically loading the class definition for the object into thereceiving process. Without this functionality, supplied by Java class loading,neither Java RMI nor Jini would be possible.
Favorite Java Programming PDF File
2858
AspectJ2EE AOP J2EE
category Tutorials » Java Programming
3488
J2EE EJB Overview
category Tutorials » Java Programming
1214
Unraveling The Mysteries of J2EE Web Applicatuib Communications
category Tutorials » Java Programming
3730
Experience J2EE Using WebSphere Application Server V6 1
category Tutorials » Java Programming
3597

