ASP.NET - What is marshalling? Explain types of marshalling.

What is marshalling? Explain types of marshalling.

Marshaling is a process of transforming or serializing data from one application domain and exporting it to another application domain.

Two types of marshalling

Marshal by value: a copy of an object is created by the server and is passed and used by the client.

Marshal by reference: the client creates a proxy to access the object.
ASP.NET - What is ObjRef object in remoting?
What is ObjRef object in remoting? - ObjRef is a searializable object returned by Marshal()..
ASP.NET - Explain the steps of acquiring a proxy object in web services.
Steps of acquiring a proxy object in web services - Client communicates to UDI node to retrieve a list of available web services...
ASP.NET - Explain the steps to create a web services and consume it.
Steps to create and consume a webservice - create a new website by selecting ASP.NET Web Site and giving it a suitable name...
Post your comment