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 |
Explain the Flow of remoting?
What are dynamic assemblies?
What is the purpose of System.EnterpriseServices namespace ?
What are the security measures exist for .net remoting in system.runtime.remoting?
How can you tell the application to look for assemblies at the locations other than its own install?
When do we use delegates in your remoting applications?
Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs? In what way it is best?
How to decide which to use .net remoting or asp.net web services?
explain is .NET Remoting?
Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs?
Which one is better WebService and Remoting ?
What security measures exist for .NET Remoting in System.Runtime.Remoting?