What is RMI Registry?

Answers were Sorted based on User's Feedback



What is RMI Registry?..

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

What is RMI Registry?..

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

What is RMI Registry?..

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

What is RMI Registry?..

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

What is RMI Registry?..

Answer / suganth

rmi allows java program call other java program on another
machine

Is This Answer Correct ?    9 Yes 15 No

What is RMI Registry?..

Answer / deepika devangan

rmi resistry is used to resistor's server object by unique
name.

Is This Answer Correct ?    15 Yes 28 No

Post New Answer

More Advanced Java Interview Questions

Is the session factory thread safe?

0 Answers  


What are the thread-to-thread communcation?

1 Answers  


Howmany interfaces are used in RMI?

2 Answers  


Explain Object Serialization and it can be used?

3 Answers   Infosys,


how can u cal servlet from java?

7 Answers  






which deployment descriptor element is used to configure the authentication method? a. auth-config b. login-config c. sec-config

1 Answers  


Name three component subclasses that support painting?

0 Answers  


what is Activation Instantinator?

0 Answers  


Why do threads block on i/o?

0 Answers  


What is the purpose of the wait(), notify(), and notifyall() methods?

0 Answers  


what is domain,give me some brief information about that?

1 Answers  


What is UniCastRemoteObject and what is its use in RMI?

6 Answers  


Categories