user496949
user496949

Reputation: 86185

.NET Remoting replaced by WCF?

I heard that .NET Remoting is replaced by WCF. Can someone tell me some details about it?

Upvotes: 3

Views: 1087

Answers (2)

marc_s
marc_s

Reputation: 755361

See the MSDN White Paper on how to migrate from .NET remoting to WCF:

http://msdn.microsoft.com/en-us/library/aa730857%28v=vs.80%29.aspx

WCF is the unified communications stacks that is intended to replace ASMX web services, .NET Remoting, WSE and a few other technologies, too.

Upvotes: 9

fejesjoco
fejesjoco

Reputation: 11903

.NET remoting is the past, don't use it anymore if possible. WCF supports webservices but binary protocols, too. It's a clean design and a good implementation. It knows everything that remoting and more. There's tons of documentation on the web.

Upvotes: 3

Related Questions