我有一个托管SOAP服务的非常基本的自托管WCF控制台应用程序。不幸的是,当我查看对服务中某个方法的调用的响应时,序列化响应实际上是序列化的私有变量而不是公共变量。进行调用的客户端不期望这样,因此在响应中看不到任何有效值。服务代码如下:
using (ServiceHost host = new ServiceHost(typeof(MyService), baseAddress))
{
// Enable metadata publishing.
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
host.Description.Behaviors.Add(smb);
host.Open();
... ...
}
public class MyService: IMyService
{
public MyReturnType MyMethod()
{
return new MyReturnType();
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2612.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")][System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.aaa123.com/WebServices")]
public partial class MyReturnType {
private string myPropertyField;
public string MyProperty { get { return myPropertyField; } set { this.myPropertyField = value; } }
因此,在上面对MyMethod的调用中,我会看到响应XML中的属性定义为myPropertyField,而不是MyProperty。
有没有办法改变这种行为?
答案 0 :(得分:0)
似乎如果我在接口中的方法声明中添加以下属性,响应将被正确序列化:
System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]