67.9k views
5 votes
Which of the following is NOT true about RMI? RMI uses the socket connection, including opening and closing the socket. RMI allows a thread to invoke a method on a remote object To make remote methods transparent to both the client and the server, RMI implements using stubs and skeletons. RMI is object-based.

User Yahoo
by
5.2k points

1 Answer

4 votes

Answer:

RMI uses the socket connection, including opening and closing the socket.

Step-by-step explanation:

  • RMI stands for Remote Method Invocation.
  • RMI is basically a method in which variety of object of (OOP) Object-oriented programming interact with each other on computers in a distributed network.
  • Threads are allowed by RMI to invoke transparent methods on remote objects so that transparency is for both server and client as well.
  • The program on client side is known as stub while that on server end is known as skeleton.

I hope it will help you!

User OldFrank
by
5.0k points