1.

What Is The Difference Between Rmi And Rpc?

Answer»

Remote Procedure Call or the RPC and the Remote Method Invocation or RMI are both message passing techniques in the Inter Process Communication (IPC).

But there are two basic differences between the two methods:

  1. RPC SUPPORTS procedural programming. I.e. only remote PROCEDURES can be invoked. Whereas RMI is object-based. As the name suggests, it is invoked on remote OBJECTS.
  2. In RPC, the parameters that are PASSED are ordinary data structures. Whereas in RMI, objects can be passed as parameters.

Remote Procedure Call or the RPC and the Remote Method Invocation or RMI are both message passing techniques in the Inter Process Communication (IPC).

But there are two basic differences between the two methods:



Discussion

No Comment Found