我想删除添加到我服务响应中的默认xmlns(命名空间)(参见下图) alt text http://i40.tinypic.com/2corjac.png
有办法做到这一点吗?这是因为为了从C#windows应用程序中使用此服务,我必须将命名空间添加到每个数据对象的标题 - 我将序列化的DataContract。
答案 0 :(得分:6)
我想如果你只是用
[DataContract(Namespace="")]
在Bookmarks
上,应该这样做。
我刚试过这个并得到以下内容:
<CompositeType xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<BoolValue>true</BoolValue>
<StringValue>Hello </StringValue>
</CompositeType>
答案 1 :(得分:1)
实际上,使用 PoxDataContract 证明WCF REST Contrib是完美的解决方案。
答案 2 :(得分:0)