What is RMI Registry?
Answer Posted / 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 |
Post New Answer View All Answers
What is jboss?
What are transaction attributes?
whats is statement and procedure
Can I map more than one table in a cmp?
How is a java object message delivered to a non-java client?
What is meant by method chaining?
Are we allowed to change the transaction isolation property in middle of a transaction?
What does module-relative mean?
What is chat area? Explain.
What happens when a thread cannot acquire a lock on an object?
What are externizable interface?
What are the benefits of detached objects?
which book is better for jdbc ,servlets and jsp
How to implement dphibernate to activate lazy loading in Flex with java ?thanx in advance!
What is the relationship between local interfaces and container-managed relationships?