What is the difference between a stub and a skeleton?

Answer Posted / guest

A stub is a proxy for a remote object that runs on the
client computer. A skeleton is a proxy for a remote object
that runs on the server. Stubs forward a client's remote
method invocations (and their associated arguments) to
skeletons, which forward them on to the appropriate server
objects. Skeletons return the results of server method
invocations to clients via stubs.

Is This Answer Correct ?    216 Yes 20 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do threads block on i/o?

678


Explain about local interfaces.

585


In inglish: How to convert jar to exe files? Em português: Como converter arquivos .jar para .exe?

2155


What is jboss?

571


What is the form of storage space in java?

1737






What you mean by COM and DCOM?

613


How database connectivity in XML is achieved?

1766


What are the diff types of exception?

553


What is in-memory replication?

557


Why a client should be multithreading? Explain.

593


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!

1361


What modifiers may be used with an inner class that is a member of an outer class?

573


Whats new with the stop(), suspend() and resume() methods in jdk 1.2?

581


Are we allowed to change the transaction isolation property in middle of a transaction?

563


Why use POJO when I can use hashmap

2045