10 Differences Between WCF and ASP.NET Web Services
Here are the 10 important differences between WCF Services and ASP.NET Web Services:
For more details: http://msdn.microsoft.com/en-us/library/aa738737.aspx
Published at DZone with permission of Cagdas Basaraner, author and DZone MVB. (source)| 10 Differences Between WCF and ASP.NET Web Services |
For more details: http://msdn.microsoft.com/en-us/library/aa738737.aspx
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)
Tags:





Comments
John Conner replied on Fri, 2012/06/15 - 7:34am
One little correction: for ASP.NET services and what you can and can't serialize, if your class implements IXmlSerializable, you can handle the serialization however you wish - private fields, dictionaries, etc. It's a bit faffy to do compared to using attributes, but it works.
The serializers that the framework generate simply delegate the XML generation to your ReadXml/WriteXml methods - it's down to you to get it right (get the framework to generate the .cs file for you (diagnostics setting in your config file), and you'll see what I mean.