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 |
How can objects in two diff. App Doimains communicate with each other ?
Explain how can you automatically generate interface for the remotable object in .net with microsoft tools?
Will clr handle unmanaged code or not?
What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services?
What are the remotable objects in .net remoting?
What is unboxing?
How do you directly call a native function exported from a DLL?
What is the difference between remoting and webservice?
When we use web service and when we use Remoting?
What is the difference between .Net Remoting and Web Services ?
what are the requirements to enable remote components to interact each other?
Define the lease of the object?