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 |
What is resource bundle?
diffrence between jsp and servelts.
what is container?
What are the services in RMI ?
What is threadfactory?
what are the software's needed to develop advanced java 3 tier application project
Is the ternary operator written x : y ? Z or x ? Y : z ?
what is the difference between System.out.println and out.println in java
what are JSP tags? what is difference between include action and directory?
Explain phantom read?
can any one tell me how to learn good coding techniques
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!