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 |
when A client sent a request to the server to open facebook page and close the browser after this request .at that time the same user do login by using a different browser then that session id will exist or not for the same client??
what is default length of textfield ?
Explain Life cycle of Servlet Filter.
2 Answers InfoBrain, ITC Infotech,
i have a 1000 objects in data base i need to display those in jsp's how can i retrive those objects in jsp. (consider the performance issue)
What is jboss?
important features of java which differenciate it from c++
how to get value in combo for updation?
what are the activation groupworks?
a US company has filed my H1B visa ,, and i got selected in random number process.I wanna ask Could they ask regarding my languages(java,c++) or there will b just general questions?? And wat kind of questions will they ask in embassy interview??
How many JSP scripting elements and what are they?
Explain the methods of Naming class, rebind( ) and lookup()?
What is the difference between a static and a non-static inner class?