1.

Explain The Difference Between Rpc And Rmi?

Answer»

RMI 

  • The remote objects are accessed by the references.
  • Implements object to object implementation among different java objects to implement distributed COMMUNICATION model.
  • RMI passes the objects as parameters to remote methods.
  • RMI invokes the remote methods from the objects.

RPC :

  • The process is through methods / functions.
  • Proxy SERVER is involved in processing the PROCEDURE calls.
  • Calls a procedure remotely like invoking the methods.
  • The remoteness is not exactly transparent to the client.

RMI 

RPC :



Discussion

No Comment Found