我为soap故障定义了一个自定义模式,如下所示: ... ...
我在VS 2008中生成了代码:
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.zurich.com/zsoa/corporate/common/2008/08/fault")]
[System.Xml.Serialization.XmlRootAttribute("zsoaFault", Namespace="http://schemas.zurich.com/zsoa/corporate/common/2008/08/fault", IsNullable=false)]
public partial class ZSOAFault : AbstractFault
{
...
我开发了一个自定义IErrorHandler(一个框架的一部分发送到所有项目),它会生成这样的自定义soap错误:
Schemas.ZSOAFault.ZSOAFault zfault = new Schemas.ZSOAFault.ZSOAFault();
zfault.message = "hello";
zfault.operation = "operation";
zfault.serviceContext = "serviceContext";
zfault.serviceEndpoint = "serviceEndpoint";
zfault.timeStamp = DateTime.Now;
FaultException<Schemas.ZSOAFault.ZSOAFault> fe = new FaultException<Schemas.ZSOAFault.ZSOAFault>(zfault);
MessageFault msgFault = fe.CreateMessageFault();
重要的是,Schemas.ZSOAFault.ZSOAFault类是从模式生成的,而不是从导入相同模式的应用程序wsdl生成的。
但是当我看到这个返回的肥皂故障时,我看到了一个不同的命名空间:
<detail>
<ZSOAFault xmlns="http://schemas.datacontract.org/2004/07/Schemas.ZSOAFault" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<message>hello</message>
<exception i:nil="true"/>
<operation>operation</operation>
<serviceContext>serviceContext</serviceContext>
<serviceEndpoint>serviceEndpoint</serviceEndpoint>
<timeStamp>2010-07-14T14:31:58.5437649+02:00</timeStamp>
</ZSOAFault>
</detail>
我希望在架构中看到自定义故障定义的命名空间,或者我错了吗?
由于 奥利弗
答案 0 :(得分:2)
我似乎记得WCF中的自定义错误需要是数据协定,并且从不使用XmlSerializer,因此您将使用的Xml序列化程序属性将被忽略。而是使用[DataContract]属性:
[DataContract(Name="zsoaFault", Namespace="http://schemas.zurich.com/zsoa/corporate/common/2008/08/fault")]
public partial class ZSOAFault : AbstractFault {
....
}