WCF binding chooser algorithm

I have watched a speak at a TechEd conference that showed a simple algorithm for choosing a WCF binding. I can't find this algorithm but I remember some of the main ideas:

  1. If your WCF service will have non-.NET clients choose Http Soap
  2. If your WCF will have .NET clients in other machines choose Net Tcp
  3. If your WCF will have .NET clients in the same machine choose Message Queue

Can anyone provide a link to the full version of this algorithm?

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Something like that maybe?

WCF Binding Decision Chart

WCF Binding Decision Chart

Marc

link|improve this answer
Exactly =) thanks man! – Jader Dias Dec 2 '09 at 12:04
What disconnected communication means in this chart? – Jader Dias Dec 2 '09 at 12:34
1  
Disconnected as in : you drop off a message into a queue, but you don't get back a response right away. The message might be in the queue for a while before the service on the other end picks it up and works on it. – marc_s Dec 2 '09 at 12:57
feedback

I found another version of the algorithm:

http://mohammedatef.files.wordpress.com/2009/06/wcfbinding.jpg http://mohammedatef.files.wordpress.com/2009/06/wcfbinding.jpg

link|improve this answer
feedback

they have the speaks and the presentation on CD (if you participated). they usually sell the complete DVD after the conference ends.

I think a better question would be - to present your case and have one of the experts recommend (or read Juval Lowy book on wcf.)

I go for net.tcp every time (but i don't mix with non-dot net clients...) both on the same machine and outside.

This algorithm is a recommendation and not a must know...

link|improve this answer
1  
Correct, I've fixed it. – Dani Dec 2 '09 at 1:08
feedback

Your Answer

 
or
required, but never shown

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