Answer Posted / obakeng
RMI architecture is a structure that is used to to control
the flow of the data exchange communicated between the
server and the client. And it consists of three layers
being;
1. Stub/skeleton- listen to remote calls made by the client
and forward them to the remote RMI services in the server.
2. Remote Reference Layer- manages and interprets
references made by the client to remote object on a server.
3. Transport Layer- this is the link between the RRL
(remote reference layer) on the server-side and the RRL on
the client-side.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of the finally clause of a try-catch-finally statement?
What is the difference between a menuitem and a checkboxmenuitem?
Can I use multiple html form elements with the same name?
Explain the advantages and disadvantages of detached objects.
How can I scroll through list of pages like the search results in google?
Which container method is used to cause a container to be laid out and redisplayed?
What is chat area? Explain.
Difference between swing and awt?
What happens when a thread cannot acquire a lock on an object?
In our urls and in the text of the buttons we have comma. Its causing an error. Is there a way to change the delimiting character for the menu arguments?
What is the difference between java class and bean?
Which are the different segments of memory?
Can I map more than one table in a cmp?
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 class is the top of the awt event hierarchy?