1.

What Is The Main Purpose Of Distributed Object Applications In Rmi?

Answer»

RMI consists of a server and a client program. The application in RMI creates a number of remote objects that makes the references to the objects that are to be accessible. This way when a client makes a call to the method on remote objects then the reference is PASSED to one or more remote objects in server.

It then invokes certain methods on them to provide few functionalities. RMI provides the MECHANISM to communicate and PASS the information from one part to another using the distributed object applications. It requires to locate the remote objects so that the registry can be MAINTAINED for the remote objects with RMI's naming facility, rmiregistry, and the application that can pass the remote object references and RETURN it as a normal operation.

RMI consists of a server and a client program. The application in RMI creates a number of remote objects that makes the references to the objects that are to be accessible. This way when a client makes a call to the method on remote objects then the reference is passed to one or more remote objects in server.

It then invokes certain methods on them to provide few functionalities. RMI provides the mechanism to communicate and pass the information from one part to another using the distributed object applications. It requires to locate the remote objects so that the registry can be maintained for the remote objects with RMI's naming facility, rmiregistry, and the application that can pass the remote object references and return it as a normal operation.



Discussion

No Comment Found