“I bought this guide a few days ago to prepare for my interview with Oracle. Many of the questions they asked me were from this guide. I found this book absolutely great!”
RMI stands for Remote Method Invocation. Traditional approaches to executing code on other machines across a network have been confusing as well as tedious and error-prone to implement. The nicest way to think about this problem is that some object happens to live on another machine, and that you can send a message to the remote object and get a result as if the object lived on your local machine. This simplification is exactly what Java Remote Method Invocation (RMI) allows you to do.
Above excerpt is from “Thinking in java”. For more information refer to any book on Java.
RMI stands for Remote Method Invocation. Traditional approaches to executing code on other machines across a network have been confusing as well as tedious and error-prone to implement. The nicest way to think about this problem is that some object happens to live on another machine, and that you can send a message to the remote object and get a result as if the object lived on your local
machine. This simplification is exactly what Java Remote Method Invocation (RMI) allows you to do.
Above excerpt is from “Thinking in java”. For more information refer to any book on Java.
RMI enables an application to invoke a method from remote objects. RMI enables passing information between a client and a server.
Leave an Answer/Comment