1.

Explain How Rmi Clients Contact Remote Rmi Servers?

Answer»
  • The client procedure CALLS the client stub in the normal way.
  • The client stub builds a message and traps to the kernel.
  • The kernel sends the message to the remote kernel.
  • The remote kernel GIVES the message to the server stub.
  • The server stub UNPACKS the PARAMETERS and calls the server.
  • The server does the work and returns the RESULT to the stub.
  • The server stub packs it in a message and traps to the kernel.
  • The remote kernel sends the message to the clients kernel.
  • The clients kernel gives the message to the client stub.
  • The stub unpacks the result and returns to the client.



Discussion

No Comment Found