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 are the channels in .net remoting?
What are the advantage of remoting over web services?
What are the threading types?
Which Namespaces is used to achieve the Remoting?
Difference between .net remoting versus distributed com?
Explain how to directly call a native function exported from a dll?
Can you configure a .NET Remoting object via XML file?
What are dynamic assemblies?
How do you register a .NET assembly?
What are the information required to configure remote objects?
Define a process?
What are the difference between static assemblies and dynamic assemblies?