What are remotable objects in .NET Remoting?
Answers were Sorted based on User's Feedback
Answer / bindu sarika
Remotable objects are objects that are marshalled across
different application domains.The objects can be marshalled
by value and marshalled by reference.
Marshalled by value:A deep copy of the object is passed to
the reciever.
Marshalled by reference:A reference to the existing object
is passed .
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ganesh
Remotable objects are object that are instantiated outside
the caller's application domain.
Either by value or by reference.
Is This Answer Correct ? | 0 Yes | 0 No |
What is a formatter in .net remoting?
Define the lease of the object?
When should we choose .net remoting over .net web services?
Explain how to directly call a native function exported from a dll?
Explain the types of .net remoting?
define client activated objects (cao)?
What is the Difference between CAO and SAO in Remoting.
What are the difference between static assemblies and dynamic assemblies?
Explain the hierarchial description of remoting?
What is a process ?
What are the ways to renew lifetime leases of objects?
What are the remotable objects in .net remoting?