TODO:
Have you ever wanted to return Attributes, or have further control over serialization when using WCF? By default, it uses the DataContractSerializer, but you can tell it to use the XmlSerializer.
SOLUTION:
1. Ensure you have your interface marked with [ServiceContract]
2. Add XmlSerializerFormat to your method
[ServiceContract]
publicinterfaceIMyService
[WebGet(UriTemplate = "employee")]
[OperationContract]
[XmlSerializerFormat]
Response GetEmployees();
Now your WCF call will use the XmlSerializer rather than the DataContractSerializer.
NOTES:
There are no notes on this topic.