First of all, it needs to understand that WCF Service provides all the capabilities of .NET web servies and further extends it.Simple and basic difference is that ASMX web service is designed to send and receive messages using SOAP over HTTP only. While WCF service can exchange messages using any format (SOAP is default) over any transport protocol (HTTP, TCP/IP, MSMQ, NamedPipes etc).
ASMX is simple but limited in many ways as compared to WCF.
-
- ASMX web servicescan be hosted only in IIS whileWCF service has all the following hosting options:
- IIS
- WAS (Windows Process Activation Services)
- Console Application
- Windows NT Services
- WCF provided Host
- ASMX web services support is limited to HTTP while WCF supports HTTP, TCP, MSMQ, NamedPipes.
- ASMX Security is limited. Normally authentication and authorization is done using IIS and ASP.NET security configuration and transport layer security.For message layer security, WSE can be used.
WCF provides a consistent security programming model for any protocol and it supports many of the same capabilities as IIS and WS-* security protocols, additionally, it provides support for claim-based authorization that provides finer-grained control over resources than role-based security.WCF security is consistent regardless of the host that is used to implement WCF service.
Note: Best free online programming course list related to .NET and other technologies can be helpful. - Another major difference is that ASMX web services uses XmlSerializer for serialization while WCF uses DataContractSerializer which is far better in performance than XmlSerializer.
Key Issues with XmlSerializer in serializing .NET types to xml are:- Only public fields or properties of the .NET types can be translated to Xml.
- Only the classes that implement IEnumerable can be translated.
- Classes that implement IDictionary, such as Hashtable cannot be serialized.
- ASMX web servicescan be hosted only in IIS whileWCF service has all the following hosting options:
Hopefully, this WCF Tutorial will be helpful in understanding the difference between WCF and ASP.NET Web Services.
Related WCF Tutorials:
Top 10 Interview Questions and Answers Series:
- Top 10 WCF Interview Questions
- Comprehensive Series of WCF Interview Questions
- Top 10 HTML5 Interview Questions
- Top 10 ASP.NET Interview Questions
- Comprehensive Series of ASP.NET Interview Questions
- Top 10 ASP.NET MVC Interview Questions
- Top 10 ASP.NET Web API Interview Questions
- Top 10 ASP.NET AJAX Interview Questions
good
this is nice
Nice..
Oh! Thanks for your Article
Welcome Ngo 🙂
Good Article
Nice Article. Although 1st point is partially correct. ASMX web services can be hosted not only in IIS, but also it can be hosted in windows services. Please refer MSDN and below links for how to host in windows service –
1) http://msdn.microsoft.com/en-us/library/aa529311.aspx
2) http://www.csharptutorial.in/2012/01/cnet-difference-between-web-service-and.html
nice article !! it gives more insight on WCF
wonderful..
In case of DataSet that implements IXmlSerializable interface, its serialized in a special XML format that groups under a common node the schema of the DataSet and its DiffGram representation.
What about XmlSerializer and DataSet which doesn’timplement IEnumerable?
those are good differences between WCF and Web services………
Hey Buddy good article. keep it up…….
good.. thanks