无法解析soap 1.1消息wcf客户端

时间:2013-06-24 05:53:50

标签: c# .net wcf axis soap-client

美好的一天,我正在通过WCF客户端使用基于Apache轴构建的soap 1.1服务。问题是错误和正常响应都没有被WCF内置的deserilizer解析,我在通过wcf客户端调用web操作时遇到了与XML解析相关的异常。当我检查消息时,我得到了这个:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <s:Header xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" />
  <soapenv:Body>
    <V2Response xmlns="urn:ETS">
      <V2Return xsi:type="ns1:TResponse" xmlns:ns1="urn:ETS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <fulfilmentRef></fulfilmentRef>
        <paymentRef></paymentRef>
        <statusCode>2013</statusCode>
        <statusDescription>ePayments: Invalid client password specified in request.</statusDescription>
        <transactionId xsi:nil="true" />
        <transactionTimeStamp>2013-06-21T08:22:16.483Z</transactionTimeStamp>
      </V2Return>
    </V2Response>
  </soapenv:Body>
</soapenv:Envelope>

我得到的例外是:

> The specified type was not recognized: name='TResponse', namespace='urn:ETS', at <V2Return xmlns='urn:ETS'>

我在TResponse中有一个有效的Reference.cs类,如果可以通过更改配置来解决这个问题,请告诉我。我希望WCF客户端解析任何肥皂消息,但它不能,我在服务器端无法改变任何内容,它是第三方API。

1 个答案:

答案 0 :(得分:1)

我可以通过在svcutil.exe生成的代理类中手动更改命名空间来解决此问题。 “TResponse”类在代理代码中定义了一些不同的命名空间,当我将命名空间更改为urn:ETS时,soap响应很容易反序列化为类。在此之前,我检查了SoapUI的响应和验证的soap响应,一切看起来都很完美,然后我搜索了SO并找到了This url。在再次阅读异常后,我意识到问题出在命名空间中。

以下是我所做的改变:

/// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.4927")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://axis.webservices.api.etransactions")]
    public partial class TResponse : object, System.ComponentModel.INotifyPropertyChanged {
        ........

我用“urn:ETransactionsService”替换了“http://axis.webservices.api.etransactions”并且它有效,:)!