.NET Remoting versus Distributed COM.- .NET Remoting is the successor of DCOM. Microsoft DCOM is a solution for distributed object and very good in terms of performance when components are in the same network. But its drawbacks in the internet connected world are visible. - It uses proprietary binary protocol which is not supported by other object models, thus can't support interoperability across platform. - .NET Remoting uses TCP or HTTP protocol that is supported by most of the object models. This allows .NET Remoting to be adaptable to the network environment in which it is being used.
|