up vote 53 down vote favorite
53
share [g+] share [fb]

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.

The trouble is, every tutorial I find assumes that I've done one of those things, and it tends to follow the line of "Here are the differences; you know the rest." But I don't know the rest!

So: Do you know of any tutorial articles, books, etc. that assume that the reader knows C# or VB .NET, but nothing about web services, MSMQ, remoting, and all those other technologies that WCF replaces?

link|improve this question

65% accept rate
feedback

closed as not constructive by casperOne Jan 25 at 21:59

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

10 Answers

"Learning WCF" 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.

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.

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.

Keep at it and you'll get it.

link|improve this answer
There is a reprint which covers VS2008 - see the author's website – MarkJ Feb 4 '11 at 14:40
it s actually pretty straight forward and the learning curve is not that high. lets say two days. – DarthVader Feb 17 '11 at 20:26
@Terry link is broken. – RHaguiuda Oct 17 '11 at 13:19
May have been superseded with a newer edition. Just search Amazon for Michele Leroux Bustamante. – Terry Donaghe Oct 19 '11 at 20:19
feedback

Here are some resources from MSDN that I do not think that require any prior knowledge:

link|improve this answer
Here is a full series of Michelle's webcasts: dasblonde.net/2007/06/24/WCFWebcastSeries.aspx – bychkov Apr 27 '09 at 17:01
Note: You'll need to use IE to try viewing/downloading the webcasts. I wasn't able to do it with Firefox. So frustrating! >_< – Ecyrb Nov 12 '09 at 17:56
feedback

I thought the MSDN Getting Started Tutorial 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.

link|improve this answer
feedback

The absolute best book out there is Essential Windows Communication Foundation 3.5.

Here's a basic article about how web services differ conceptually from standard procedural code:

http://www.iserviceoriented.com/blog/post/Introduction+to+Service+Oriented+Architecture.aspx

link|improve this answer
The link doesn't work anymore. Do you have an alternative? – kirk.burleson Oct 28 '10 at 16:10
Good book, but not as good as "Learning WCF" for a complete beginner (at least, it wasn't for me). – John Robertson Dec 9 '10 at 18:10
feedback

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!

link|improve this answer
2  
Yeap- except this book isn't really aimed at beginners. – RichardOD Sep 18 '09 at 9:45
feedback

Tutorials and webcasts and books are great, but the only way I was really able to synthesize it all was to start making things. Build a couple projects, play with the endpoint configurations, introduce some deliberate faults to see how it works.

THEN after you've done some playing around, go back and (re)read Juval Lowy's book, and you'll get a lot out of it.

link|improve this answer
feedback

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 look at this site and read about the various integration styles.

link|improve this answer
feedback

Just like Terry said the Learning WCF of Michelle is just great, ease written, nice examples. After that you can go further with the books of Microsoft / Judal Lovy (Programming WCF services). If you'd prefer online videos you should take a look at: http://www.pluralsight-training.net/microsoft/ (You will have to pay to view the vids but it's totally worth it).

link|improve this answer
feedback

Learn The ABCs Of Programming Windows Communication Foundation: http://msdn.microsoft.com/en-us/magazine/cc163647.aspx

link|improve this answer
feedback

I actually went on a 5 day course called "WCF Master Class".. best, most valuable course I ever went on:

http://idesign.net/idesign/DesktopDefault.aspx?tabindex=0&tabid=20

WCF is a big beast. Sure you can "get by" googling and so on, but the best way is to have face-to-face training, you will take so much more in.

This book is good and will definitely give you the core knowledge you need: http://www.amazon.com/Programming-WCF-Services-Juval-Lowy/dp/0596526997

Don't just "wing it", either read the book and take note.. or have formal training. WCF is excellent but only if you completely understand it.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.