Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the difference between wcf service and web service? [duplicate]

Possible Duplicate:
Web Service vs WCF Service

Duplicate:

Web Service vs WCF Service


What is the difference between WCF service and Webservice ?

like image 600
Tushar Maru Avatar asked Dec 06 '22 06:12

Tushar Maru


1 Answers

WCF is a programming model and API. "WCF Service" implies an app that is built using that programming model and API.

"Web Service" is an app that exposes an HTTP (REST (XML or JSON), SOAP or otherwise) interface.

You can build a Web service using WCF, but you can also build a Web service using other APIs or "stacks". Like PHP or Java, for example.

With WCF you can build web services but you can also build services that are not, "Webbish". For example you can build a service that accepts incoming binary requests over only a local pipe interface. It is still a service, but it is not a "web service" because it is not using web protocols (generally HTTP and XML).

like image 159
Cheeso Avatar answered Jan 19 '23 01:01

Cheeso