0

大家好,我正在通过 WCF 客户端使用基于 Apache 轴的soap 1.1 服务。问题是 WCF 的内置反序列化器未解析故障和正常响应,并且在通过 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'>

我有一个有效的TResponseReference.cs,请让我知道这是否可以通过更改配置来处理,我期待 WCF 客户端解析任何肥皂消息但它不能,我无法在服务器端更改任何内容,它是第 3 方 api .

4

1 回答 1

1

我可以通过在 svcutil.exe 生成的代理类中手动更改命名空间来解决这个问题。“TResponse”类在代理代码中定义了一些不同的命名空间,当我将命名空间更改为 urn:ETS 时,soap 响应很容易反序列化为类。在此之前,我检查了 SoapUI 的响应并验证了肥皂响应,一切看起来都很完美,然后我在 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 ”,它起作用了,:)!

于 2013-06-26T10:57:46.960 回答