Showing posts with label Web Services. Show all posts
Showing posts with label Web Services. Show all posts

Wednesday, March 21, 2012

Difference between WCF vs. Web Services (ASMX)

Categories WCF ASMX (Web Services)
Protocols Support
  1. HTTP
  2. TCP
  3. Name Pipes
  4. MSMQ
  5. Custom
  6. UDP
  1. HTTP
Hosting
  1. A WCF component can be hosted in any kind of environment in .NET 3.0, such as a console application, Windows application, or IIS.
  2. WCF services are known as 'services' as opposed to web services because you can host services without a web server.
  3. Self-hosting the services gives you the flexibility to use transports other than HTTP.
Can be hosted only with HttpRuntime on IIS