How do I remove XML namespaces from an object\'s XML representation serialized using DataContractSerializer?
That object needs to be serialized to a very simple outp
You need to mark the classes you want to serialize with:
[DataContract(Namespace="")]
In that case, the data contract serializer will not use any namespace for your serialized objects.
Marc