














Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Remote method invocation (rmi) in java, a technology that enables communication between objects located on different computers. It covers the concept of rmi, its advantages over corba, requirements, terminology, processes, interfaces, classes, conditions for serializability, security, and implementation with examples. Rmi allows a client object to invoke methods on a remote object, making it a powerful tool for building distributed applications.
Typology: Slides
1 / 22
This page cannot be seen from the preview
Don't miss anything!















SomeClass AnotherClass
method call
returned object
computer 1 computer 2
public interface HelloInterface extends Remote { public String say() throws RemoteException; }