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
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