WCF and NetTcpBinding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:14:13Z http://stackoverflow.com/feeds/question/564836 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/564836/wcf-and-nettcpbinding 2 WCF and NetTcpBinding Charles Graham 2009-02-19T11:16:53Z 2009-02-19T16:13:23Z <p>When I expose a service using NetTcpBinding, is .Net remoting used under the surface? Could I consume this service using .Net remoting on the client side?</p> <p>I ask this because I always thought that WCF was just a wrapper for underlying protocols such as WS*, Remoting, COM+, and MSMQ. And while I know that exposing WS* will work as expected, the others seem to be more ambivalent.</p> http://stackoverflow.com/questions/564836/wcf-and-nettcpbinding/564912#564912 3 Answer by Marc Gravell for WCF and NetTcpBinding Marc Gravell 2009-02-19T11:44:27Z 2009-02-19T11:44:27Z <p>WCF/NetTcpBinding is not the same as remoting. WCF is a message-based API; remoting is an activation/proxy framework (essentially) (<a href="http://msdn.microsoft.com/en-us/library/aa730857(VS.80).aspx" rel="nofollow">see also</a>).</p> <p>I very much doubt you could consume a WCF/NetTcpBinding service via a remoting client; they are just too different.</p> <p>WCF is a framework that provides unified access to a number of messaging protocols - and indeed you can add your own - but it wouldn't be easy.</p> <p>I suggest using a proper WCF client, or (if this isn't possible) use a basic-http client, or (my least preferred option) old-style remoting if you really, really must.</p> http://stackoverflow.com/questions/564836/wcf-and-nettcpbinding/566035#566035 2 Answer by Terry Donaghe for WCF and NetTcpBinding Terry Donaghe 2009-02-19T16:13:23Z 2009-02-19T16:13:23Z <p>WCF is more than "just" a wrapper. It's a pseudo-magic layer that handles a ton of stuff for component developers according to configuration information. With WCF you can create a service contract and an implementation and then use them across multiple machines via HTTP, HTTPS, NET-TCP, on a single machine via named pipes, securely, non-securely, etc etc all just by adjusting configuration settings.</p> <p>This is way, way different from what .net remoting does.</p> <p>Grab a copy of "<a href="http://oreilly.com/catalog/9780596521301/index.html" rel="nofollow">Programming WCF Services</a>" by Juval Lowy to get a better feeling for what all you can do with WCF.</p>