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 |
Why are some of the class and element names counter-intuitive?
What value does readline() return when it has reached the end of a file?
How can I scroll through list of pages like the search results in google?
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
what is Static binding?
which of the following authentication is stronger than the others? a. Http Basic b. Http DIGEST c. Form based
Java is fully object oriented languages or not?
What happens when we invoke a thread?s interrupt method while it is in sleeping or waiting condition?
Difference between loadclass and class.forname?
What are different types of controls in AWT?
How do you download stubs from a Remote place?
What is Stream and Types?