I wonder what is the different between Web Services and WCF? Aren´t they the same thing?
Thanks in advance!
I heared about two types of web services.
- XML Web Services
- WCF Web Services
What is the real difference?
I wonder what is the different between Web Services and WCF? Aren´t they the same thing?
Thanks in advance!
I heared about two types of web services.
What is the real difference?
Web services can be built with any number of technologies, while Windows Communication Foundation is specific to .NET. WCF is not specific to communicating via HTTP. It can also work directly over HTTP.
Check out the linked Wikipedia page for more about it.
No, they are not the same thing. While you can certainly replicate the behavior of ASP.net web services in WCF, WCF is a far more fully featured (and complex) platform for developing SOA. It enables to you to take much more control of the messages exchanged between your client and servers, and offers you many more options in regards of protocols and bindings for your endpoints.
Take a look at this article for an overview on some of the differences.