What are the differences between Marshal by value and
Marshal by reference?
Answer Posted / m.m.suhail
MBV:In this Server Creates a exact Copy of the Object and
sends it to the Client.Which can be used by the Client with
in its AppDomain with out making any further calls to the
server.
But this has a drawback,the copy sent to client will be
static and will not reflect the subsequent changes.So its
better not to use MBV when there are constant updates.
MBR:DotNet Framework creates a Proxy on the Client
AppDomain which the client uses for accessing the Objects
on the Server.We need to extend 'MarshalByRefObject' for
this.
But this to has a drawback,it increases the network traffic
as there can ba number of accesses to the Server.
So its depends upon our requirement.Small objects with
frequent accesses,we can go with MBR and huge Objects with
relatively low accesses we can go with MBV.
| Is This Answer Correct ? | 15 Yes | 4 No |
Post New Answer View All Answers
What is asynchronous programming?
How to decide which to use .net remoting or asp.net web services?
Write a example code for remoting?
Explain Singleton design pattern of Remoting?
What are static assemblies?
What is the purpose of strong name?
Difference between .net remoting versus distributed com?
What are the types of remoting?
Define singlecall activation mode in .net remoting?
What are dynamic assemblies?
Define proxy in .net remoting?
What are the ways to renew lifetime leases of objects?
Types of compatabilities and explain them ?
Is it a good design practice to distribute the implementation to remoting client?
What do you mean by windows authentication?