ASP.NET - How to specify remoting parameters using config files?

Briefly explain how to specify remoting parameters using config files.

The remoting parameters can be specified through both programming and in config files. All the settings defined in config files are placed under <system.runtime.remoting>

<application> is placed under system.runtime.remoting but the name attribute of application tag specifies if the parameter is for server or client. RemotingConfiguration.Configure is used to access the configuration keys for remoting properties.
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....
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...
Post your comment