Java / RMI
How does RMI communicate with the remote object?
RMI uses stub and skeleton object for communication with the remote object.
The stub is an object, acts as a gateway to the client. It resides the client and acts as a proxy for the remote object.
The skeleton is an object, acts as a gateway to the server. All the client incoming requests are routed through the skeleton.
More Related questions...