WCF for the totally clueless - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:45:56Z http://stackoverflow.com/feeds/question/296040 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless 18 WCF for the totally clueless Kyralessa 2008-11-17T16:22:38Z 2009-10-05T10:42:20Z <p>I've been hearing about WCF for a couple of years now, and I still don't get it. I understand that it's supposed to be a replacement for web services, remoting, MSMQ, and a few other things.</p> <p>The trouble is, every tutorial I find assumes that I've <em>done</em> one of those things, and it tends to follow the line of "Here are the differences; you know the rest." But I <em>don't</em> know the rest!</p> <p>So: Do you know of any tutorial articles, books, etc. that assume that the reader knows C# or VB .NET, but <em>nothing</em> about web services, MSMQ, remoting, and all those other technologies that WCF replaces?</p> http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless/296104#296104 4 Answer by Panos for WCF for the totally clueless Panos 2008-11-17T16:39:09Z 2008-11-17T16:39:09Z <p>Here are some resources from MSDN that I do not think that require any prior knowledge:</p> <ul> <li><a href="http://social.msdn.microsoft.com/content/en-us/msft/netframework/wcf/screencasts" rel="nofollow">Windows Communication Foundation (WCF) Screencasts</a></li> <li><a href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?culture=en-US&amp;EventID=1032344313&amp;CountryCode=US" rel="nofollow">MSDN Webcast: Windows Communication Foundation Top to Bottom (Part 01 of 15): Overview (Level 100)</a></li> <li><a href="http://social.msdn.microsoft.com/content/en-us/msft/netframework/wcf/codesamples" rel="nofollow">Windows Communication Foundation Code Samples</a></li> <li><a href="http://social.msdn.microsoft.com/content/en-us/msft/netframework/wcf/Resources" rel="nofollow">Learning Resources for Windows Communication Foundation</a> - see Virtual Labs</li> </ul> http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless/296118#296118 3 Answer by Corbin March for WCF for the totally clueless Corbin March 2008-11-17T16:42:30Z 2008-11-17T16:42:30Z <p>I thought the MSDN <a href="http://msdn.microsoft.com/en-us/library/ms734712.aspx" rel="nofollow">Getting Started Tutorial</a> wasn't bad. It walks you through step by step without many assumptions. It also contains references to detailed topics when you're ready to dig deeper.</p> http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless/296129#296129 4 Answer by Terry Donaghe for WCF for the totally clueless Terry Donaghe 2008-11-17T16:47:50Z 2009-02-18T21:03:16Z <p>"<a href="http://oreilly.com/catalog/9780596101626/index.html" rel="nofollow">Learning WCF</a>" by Michele Leroux Bustamante is an excellent book as well. It contains a ton of step-by-step tutorials for just about every scenario that one can think of with WCF. </p> <p>From what I've seen WCF has a pretty steep learning curve up until you just "get it" - there'll be a moment of epiphany where you just go, "OH YEAH!!" It's not as complicated as it looks at first blush.</p> <p>Seriously though, take a look at this book. The version that I have focuses on VS 2005 implementation which is a bit different from what you'll find in VS 2008. Maybe there's a new edition, but either way it's not impossible to follow.</p> <p>Keep at it and you'll get it.</p> http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless/296709#296709 3 Answer by jezell for WCF for the totally clueless jezell 2008-11-17T20:03:26Z 2008-11-17T20:03:26Z <p>The absolute best book out there is Essential Windows Communication Foundation 3.5. </p> <p>Here's a basic article about how web services differ conceptually from standard procedural code:</p> <p><a href="http://www.iserviceoriented.com/blog/post/Introduction+to+Service+Oriented+Architecture.aspx" rel="nofollow">http://www.iserviceoriented.com/blog/post/Introduction+to+Service+Oriented+Architecture.aspx</a></p> http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless/423698#423698 4 Answer by Sam for WCF for the totally clueless Sam 2009-01-08T09:37:31Z 2009-01-08T09:37:31Z <p>I'd recommend "Programming WCF Services" by Juval Löwy. Especially if you want to grow your service big, this book is a real help!</p> http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless/1519341#1519341 0 Answer by RichardOD for WCF for the totally clueless RichardOD 2009-10-05T10:42:20Z 2009-10-05T10:42:20Z <p>If you want to know the rest, particularly the differences between things like MSMQ and Web Services, I'd thoroughly recommend you read the first few chapters of the book "Enterprise Integration Patterns". Perhaps <a href="http://www.eaipatterns.com/" rel="nofollow">look at this site</a> and read about the various integration styles.</p>