Explain the stub's and skeleton's functionality?
Answers were Sorted based on User's Feedback
Answer / anonymous
Assume, there are two real persons.
Jayan - He provides some calculation services to people.
He lives in WebLogic Server.
When some one want to ask him to do calculations, they
should connect to WebLogic Server.
When jayan is being called by some one, the weblogic server
creates his Duplicate-1 in the calling people's Computer.
this is stub.
In the Weblogic also there is Dup-2 created. this is
skeleton.
Actually the stub asks the server to make jayan perform the
calculation.
But in reality, the Dup2 carries this request to Jayan. So
the other guy cannot DIRECTLY talk to jayan. All messages
will be intercepted by Dup1.
Jayan takes messages from Dup1 and perform the task.
| Is This Answer Correct ? | 8 Yes | 5 No |
Answer / janu
Stub-Its a Client side activity.This Functionality is
Marshalling and Unmarshalling.
Skeleton-Its a Server Side Activity.Its Response for the
Client's Purpose.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / anonymous
Mistake----
"""All messages will be intercepted by Dup1.
Jayan takes messages from Dup1 and perform the task"""
Should read as --- Dup2---
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / deepika
stub in client generally marshalls the data and sends to skeleton in server where deMarshalling takes place
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / prabhu
wat dup1 and dup 2 stands for?and is it kind of an object?
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / ankit sharma
hello i am working on my Mtech project of remote event
notification and monitering in JAVA
can anyonw plz help regaring ang any book or any study material
thanks in advance
mail me at ankit.success@gmail.com
| Is This Answer Correct ? | 0 Yes | 2 No |
What is ripple effect?
If we opened windows notepad 4 times, does it starts 4 processes or 4 threads?
Difference between JRE and JVM?
3 Answers HeadStrong, Infotech,
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?
Difference between hashmap and hashtable?
can a static method be overridden
Why a component architecture for the java platform?
For which statements does it make sense to use a label?
How a component can be placed on Windows?
What class is used to create Server side object ?
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); } }
Explain the life cycle of servlet?