Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
Perhaps marc_s made the mistake of answering the question as if Mubashar Ahmad is what he portrays himself to be, a programmer trying to decide what to use. Maybe he is actually a student looking for someone to do his assignment for him? – MGOwen Feb 2 '11 at 3:17
3  
MGOwen Thanks for spending some time to let the people know about yourself. One has to be student to learn things. – Mubashar Ahmad Feb 2 '11 at 12:02
4  
Why the heck is this closed? This is a great question! In addition, if someone knows how to use more than one protocolMapping, that would be awesome -- as it stands, I have to choose Basic, or Web, and ASP.NET won't let me have both assigned to "https". (Why should my site be restricted to one or the other? That makes no sense.) – BrainSlugs83 Oct 21 '12 at 6:02
3  
This question shold not be closed as not contructive. This is a relevant question - while it may not have a single answer, there are answers to it and this site should be the place to find those answers. – Sam Mar 18 at 18:12

closed as not constructive by Tim Post Aug 30 '11 at 8:13

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.

1 Answer

You're comparing apples to oranges here:

  • webHttpBinding is the REST-style binding, where you basically just hit a URL and get back a truckload of XML or JSON from the web service

  • basicHttpBinding and wsHttpBinding are two SOAP-based bindings which is quite different from REST. SOAP has the advantage of having WSDL and XSD to describe the service, its methods, and the data being passed around in great detail (REST doesn't have anything like that - yet). On the other hand, you can't just browse to a wsHttpBinding endpoint with your browser and look at XML - you have to use a SOAP client, e.g. the WcfTestClient or your own app.

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:

  • basicHttpBinding is the very basic binding - SOAP 1.1, not much in terms of security, not much else in terms of features - but compatible to just about any SOAP client out there --> great for interoperability, weak on features and security

  • wsHttpBinding is the full-blown binding, which supports a ton of WS-* features and standards - it has lots more security features, you can use sessionful connections, you can use reliable messaging, you can use transactional control - just a lot more stuff, but wsHttpBinding is also a lot *heavier" and adds a lot of overhead to your messages as they travel across the network

For an in-depth comparison (including a table and code examples) between the two check out this codeproject article: Differences between BasicHttpBinding and WsHttpBinding

share|improve this answer
I am not taking any decisions here dear i just wanted to know the difference you must know what is the taste of orange and the same of apple that is why i asked this question. I need more about WebHttpBinding in term of feature comparisons and performance – Mubashar Ahmad Apr 16 '10 at 5:56
Check out Google or Bing and search for "REST vs. SOAP" - LOADS of information out there! – marc_s Apr 16 '10 at 6:00
2  
One correction: wsHttpBinding doesn't support streaming. Or am I missing something? msdn.microsoft.com/en-us/library/ms730879.aspx – Andrew Shepherd Nov 21 '10 at 22:35
2  
How could I authenticate users of a RESTful Web Service? – Eduardo León May 13 '11 at 16:48
2  
Your answer was greatly explanatory, thank you – Bassel Alkhateeb Oct 4 '11 at 11:21
show 2 more comments

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