What is marshalling and what are different kinds of marshalling ?

Q

.NET INTERVIEW QUESTIONS - What is marshalling and what are different kinds of marshalling ?

✍: Guest

A

Marshaling is used when an object is converted so that it can be sent across the network or across application domains.

Unmarshaling creates an object from the marshaled data. There are two ways to do marshalling :-

* Marshal-by-value (MBV) :- In this the object is serialized into the channel, and a copy of the object is created on the other side of the network. The object to marshal is stored into a stream, and the stream is used to build a copy of the object on the other side with the unmarshalling sequence.

* Marshaling-by-reference (MBR) :- Here it creates a proxy on the client that is used to communicate with the remote object. The marshaling sequence of a remote object creates an ObjRef instance that itself can be serialized across the network.

2009-09-15, 4882👍, 0💬