Search code examples
.netwcfbindingwcf-binding

How to choose a WCF binding?


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?


Solution

  • Something like that maybe?

    WCF Binding Decision Chart

    WCF Binding Decision Chart http://img109.imageshack.us/img109/4686/wcfbindingdecisionchart.png

    Marc