What are the differences between Marshal by value and
Marshal by reference?
Answer Posted / rashmi tiwari
Remoting makes an object in one process (the server)
available to code in another process (the client). This is
called marshalling, and there are two fundamentally
different ways to marshal an object
-->Marshal by value: the server creates a copy of the
object passes the copy to the client.
-->Marshal by reference: the client creates a proxy for the
object and then uses the proxy to access the object.
| Is This Answer Correct ? | 33 Yes | 6 No |
Post New Answer View All Answers
What is a formatter in .net remoting?
What are the types of remotable objects?
Explain serialization formatters in .net remoting
Is it a good design practice to distribute the implementation to remoting client?
Write a example code for remoting?
What is objref object in remoting?
Are you aware of containment and Aggregation ?
Define proxy in .net remoting?
Explain the Flow of remoting?
What is the proxy of the server object in .net remoting?
Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?
Garbage collector?s functionality on unmanaged code ?
Explain marshalling and its types in .net remoting
What are the ways to configure remoting objects before client can use them?
Which one is better WebService and Remoting ?