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 ways to renew lifetime leases of objects?
What?s typical about a Windows process in regards to memory allocation?
Define singlecall activation mode in .net remoting?
Give the Hierarchial description of remoting?
Explain marshalling and its types in .net remoting
Explain what is the relationship between a Process, Application Domain, and Application?
What are the types of remoting?
What do you mean by windows authentication?
Explain threading types?
What are the security measures exist for .net remoting in system.runtime.remoting?
write a example for remoting (code)
What is the difference beween the registeractivatedservicetype() and registeractivatedclienttype()?