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 meant by JRMP?
what are the advantages of JTA over JTS?
Why is actionform a base class rather than an interface?
In inglish: How to convert jar to exe files? Em português: Como converter arquivos .jar para .exe?
What is table mutation and how do you avoid it?
what is a portable component?
Can I run seam outside of jboss as?
Why do threads block on i/o?
What is the highest-level event class of the event-delegation model?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
what are the activation groupworks?
What is jboss?
how to use debug in my elipse to solve problems that exist in my project
Explain how will the struts know which action class to call when you submit a form?
Explain the difference between object state and behavior?