webservice,wcf
what is the difference between webservice and wcf
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 Aug 5, 2012, 1:26 AM
You can refer to the articles published by Koirala in Codeprojects for basic understanding.
Bhushan BhurePosted Aug 3, 2012, 3:34 PM
Here are differences between them.
http://codebalance.blogspot.com/2011/01/10-differences-between-wcf-services-and.html
http://wcftutorial.net/Difference-between-WCF-and-Webservice.aspx
Also here are MSDN links
Comparing ASP.NET Web Services to WCF Based on Development
http://msdn.microsoft.com/en-us/library/aa738737.aspx
Comparing ASP.NET Web Services to WCF Based on Purpose and Standards Used
http://msdn.microsoft.com/en-us/library/aa702755
Webservice - Uses Opt-out approach
-Properties/Fields which you don't want to serialize, must be marked with XML Ignore, otherwise its serialized.
WCF – Uses Opt-In approach
- Properties/Fields which you want to serialize, must be marked, otherwise are ignored.