In .Net Remoting, an application use Channel to send messageto another application which is runing in different domain or process.Before sending message, Channel converts message into appropriate format likeXML or binary format. The channel that carries message(Mashalled parameter) canuse protocal like TCP and HTTP. Channel can be HTTPChannel and TCPChannel. TheHTTPChannel use soapFormatter to serialize messages into the XML format usingSOAP protocal. Using SOAP method allows the client to call method on the remoteobject that might not be using .Net framework. The TCPChannel usebinaryFormatter to serialize message into binary stream.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
In .Net Remoting, an application use Channel to send messageto another application which is runing in different domain or process.Before sending message, Channel converts message into appropriate format likeXML or binary format. The channel that carries message(Mashalled parameter) canuse protocal like TCP and HTTP. Channel can be HTTPChannel and TCPChannel. TheHTTPChannel use soapFormatter to serialize messages into the XML format usingSOAP protocal. Using SOAP method allows the client to call method on the remoteobject that might not be using .Net framework. The TCPChannel usebinaryFormatter to serialize message into binary stream.