What are the major differences between services and Web services ?
Differences Between Services and Web Services
Hi
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Akkiraju IvaturiPosted Sep 20, 2012, 7:29 AM
In web services web service attribute will be added on top the class. In WCF we have service contract attributes added at the same place. Web Method are added at the top of method in web service where as operation contract will be added on top method.
In Webservices xml serialization is supported whereas in WCF system.runtime.serialization is supported.
WCF services can be multithreaded via service behavior configuration whereas web services cannot be.
WCF services support many bindings like basichttp, wshttp, wsdualhttp etc while web services support only soap or xml.
Satyapriya NayakPosted Sep 20, 2012, 7:28 AM