What are the advanatages of RMI ?
Answer / satish
Handles threads and Sockets for underlying communication.
Server-side implementation can be changed without the knowledge of the client side.
To extend an RMI solution, you can extend or add new classes, just like in a non-distributed application.
| Is This Answer Correct ? | 2 Yes | 0 No |
How many requests can a server fetch at a time?
What is checkpoint? How to create checkpoints in our java projects?
What do you know about seam?
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 is a modular application? What does module-relative mean?
What are the disadvantages of using threads?
How do you iterate in Hashmap?
What is the need of serialize?
Tell me about Firewalls in RMI?
Explain the steps in details to load the server object dynamically?
Why JDBC has introduced
Why use a datasource when you can directly specify a connection details? (in a J2EE application)