What is RMI Registry?
Answers were Sorted based on User's Feedback
Answer / raji
The RMI registry is used to store a list of available
services. A client uses the registry to make it's proxy
object, and the Registry is responsible for giving
appropriate information to the client so that it can hook up
with the server that implements the service
| Is This Answer Correct ? | 93 Yes | 13 No |
Answer / bhavya
Remote Method Invocation (RMI) facilitates object function calls between Java Virtual Machines (JVMs). JVMs can be located on separate computers - yet one JVM can invoke methods belonging to an object stored in another JVM. Methods can even pass objects that a foreign virtual machine has never encountered before, allowing dynamic loading of new classes as required. This is a powerful feature!
Consider the follow scenario :
Developer A writes a service that performs some useful function. He regularly updates this service, adding new features and improving existing ones.
Developer B wishes to use the service provided by Developer A. However, it's inconvenient for A to supply B with an update every time.
Java RMI provides a very easy solution! Since RMI can dynamically load new classes, Developer B can let RMI handle updates automatically for him. Developer A places the new classes in a web directory, where RMI can fetch the new updates as they are required.
you can get more on it at javacoffeebreak.com
| Is This Answer Correct ? | 11 Yes | 9 No |
Answer / aniruddh bhatt
Essentially the RMI registry is a place for the server to register services it offers and a place for clients to query for those services
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / naresh kumar
the RMI Registry is process that normally runs on the
Server.
At first sight the registry seems to have a privileged
role inthe RMI. it is "just another" remote Object
| Is This Answer Correct ? | 8 Yes | 12 No |
Answer / suganth
rmi allows java program call other java program on another
machine
| Is This Answer Correct ? | 9 Yes | 15 No |
Answer / deepika devangan
rmi resistry is used to resistor's server object by unique
name.
| Is This Answer Correct ? | 15 Yes | 28 No |
What are the disadvantages of using threads?
What is the relation between the infobus and rmi?
What is the difference between the string and stringbuffer classes?
What is RRL?
what are getters and setters in Java with examples?
Can you give me a simple example of using the requiredif validator rule?
What class is the top of the awt event hierarchy?
Why do threads block on i/o?
How to implement RMI in Java?
what's the main difference between unix os and linux os?
what is default length of textfield ?
What is the name of the state, when a thread is executing?