InterviewSolution
Saved Bookmarks
| 1. |
Does Java support Remote Method Invocation (RMI)? |
|
Answer» The Remote Method Invocation is an API in Java which manages the creation of a distributed application by ALLOWING an object to invoke a method on another object that may be on the same machine or another remote machine but is on another address space. The communication between the CLIENT and server in RMI is done by using the stub object and the skeleton object that are on the client SIDE and server side respectively. Details about the stub object and the skeleton object are provided along with the FOLLOWING DIAGRAM:
The steps to create a Remote Method Invocation program are given as follows:
|
|