Difference between WCF and ASP.NET Web Service
.NET provides various options for creating
services under .NET Framework. Before WCF, ASP.NET Web Services are used
to ceate service in .NET Framework. Now WCF is the latest programming
model for building and developing service-oriented application. WCF
allows applications to communicate with each other in distributed
environment. WCF is a set of technologies that covers ASMX web services,
Web Services Enhancements (WSE), .NET Remoting and MSMQ. In this
article, you will learn the differences between ASP.NET Web Service and
WCF.
WCF
|
ASP.NET Web Service
|
ServiceContract and OperationContract attributes are used for
defining WCF service.
|
WebService and WebMethod attributes are used for defining web
service.
|
Supports various protocols like HTTP, HTTPS, TCP, Named Pipes and
MSMQ.
|
Supports only HTTP, HTTPS protocols.
|
Hosted in IIS, WAS (Windows Activation Service), Self-hosting,
Windows Service.
|
Hosted only in IIS.
|
Supports security, reliable messaging, transaction and AJAX and REST
supports.
|
Support security but is less secure as compared to WCF.
|
Supports DataContract serializer by using
System.Runtime.Serialization.
|
Supports XML serializer by using System.Xml.Serialization.
|
Supports One-Way, Request-Response and Duplex service operations.
|
Supports One-Way and Request-Response service operations.
|
WCF are faster than Web Services.
|
Web Services are slower than WCF
|
Hash Table can be serialized.
|
Hash Table cannot be serialized. It can serializes only those
collections which implement IEnumerable and ICollection.
|
Unhandled Exceptions does not return to the client as SOAP faults.
WCF supports better exception handling by using FaultContract.
|
Unhandled Exceptions returns to the client as SOAP faults.
|
Supports XML, MTOM, Binary message encoding.
|
Supports XML and MTOM (Message Transmission Optimization Mechanism)
message encoding.
|
Supports multi-threading by using ServiceBehaviour class.
|
Doesn’t support multi-threading.
|
No comments:
Post a Comment