In WCF there are several different types of HTTP based bindings:
What are the differences between these 3?
In particular what are the differences in terms of features / performance and compatability?
|
In WCF there are several different types of HTTP based bindings: What are the differences between these 3? In particular what are the differences in terms of features / performance and compatability? |
|||||||||||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
You're comparing apples to oranges here:
So your first decision must be: REST vs. SOAP (or you can expose both types of endpoints from your service - that's possible, too). Then, between basicHttpBinding and wsHttpBinding, there differences are as follows:
For an in-depth comparison (including a table and code examples) between the two check out this codeproject article: Differences between BasicHttpBinding and WsHttpBinding |
|||||||||||||||||
|