Click here to Skip to main content
16,018,202 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
difference between web services and windows communication foundation(WCF) please reply me
Posted
Updated 25-Sep-13 19:25pm
v2

Web Services is networking an API for C/C++.
WCF is a network framework (it goes beyond an API) for .Net.

WCF has the (well-earned) nickname Windows Complication Foundation for a reason--there is a lot of configuration to set up application endpoints.
 
Share this answer
 
Web Services
1.It Can be accessed only over HTTP
2.It works in stateless environment

WCF
WCF is flexible because its services can be hosted in different types of applications. The following lists several common scenarios for hosting WCF services:
IIS
WAS
Self-hosting
Managed Windows Service

There is a good article to make the difference between Web Service and WCF

What's the Difference between WCF and Web Services?[^]
 
Share this answer
 
Web Services deals with http based protocols only.Where as WCF is Web Services + more protocols like tcp, nettcp, namedpipe binding/protocols.

WCF can be used for intranet/internet client/server applications. where as Web Services is limited to internet web based applications.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900