What is the main functionality of RRL(Remote Reference
Layer)?
Answers were Sorted based on User's Feedback
Answer / janu
RRL is a Part of Java's Remote Method Invocation(RMI)
protocol. RRL exists in both the RMI client and server. It
is used by the stub or skeleton protocol layer and uses the
transport layer. RRL is reponsible for transport-
independent functioning of RMI, such as connection
management or unicast/ multicast object invocation.
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / kartik
The remote reference layer, which is the middleware between
the stub/skeleton layer and the underlying transport
protocol. This layer handles the creation and management of
remote object references.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / vikash
RRL is a Part of Java's Remote Method Invocation(RMI)
protocol. RRL exists in both the RMI client and server. It
is used by the stub or skeleton protocol layer and uses the
transport layer. RRL is reponsible for transport-
independent functioning of RMI, such as connection
management or unicast/ multicast object invocation
| Is This Answer Correct ? | 0 Yes | 3 No |
which is the better collection class if the requirement is only displaying the data
What is the difference between java class and bean?
Difference between new operator and class.forname().newinstance()?
What is the argument type of a programs main() method?
If we opened windows notepad 4 times, does it starts 4 processes or 4 threads?
Which Taglibraury you used in your project? plz send me ans....which we r using generally
how java is os independent language ?
Are we allowed to change the transaction isolation property in middle of a transaction?
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); } }
Name the method to find, if a thread is active or not?
Connection Pooling with different type of databases?
What are skeletons and stubs and how they are generated?