WCF不反序列化。为什么我的参数为NULL?

时间:2012-10-03 03:39:37

标签: c# xml wcf web-services soap

我正在尝试设置一个接受预定义的传入SOAP / XML消息的Web服务。我无法控制客户端代码或发送的SOAP消息。我正在尝试一个简单的例子,我遇到了问题。假设这是SOAP消息:

    <?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
  <env:Body>
    <CustomerRequest xmlns="http://tempuri.org">
      <Customer>
        <FirstName>John</FirstName>
        <LastName>Doe</LastName>
      </Customer>
    </CustomerRequest>
  </env:Body>
</env:Envelope>

我的数据合同对象:

[DataContract(Name = "Customer", Namespace = "http://tempuri.org")]
public class Customer
{
    [DataMember]
    public string FirstName { get; set; }

    [DataMember]
    public string LastName { get; set; }
}

服务接口:

[ServiceContract(Namespace = "http://tempuri.org")]
public interface IService1
{
    [OperationContract(Action="*")]
    [WebInvoke(Method = "POST")]
    bool Customer(Customer customer);
}

当我发送SOAP请求时,我可以查看fiddler中的所有内容,看起来没问题。但是当它命中我的代码时,Customer对象为null。我觉得我错过了很简单的事情。

这也是原始请求:

POST http://127.0.0.1.:3619/Service1.svc HTTP/1.1
SOAPAction: http://tempuri.org/IService1/Customer
Content-Type: text/xml;charset=utf-8
Host: 127.0.0.1.:3619
Content-Length: 339
Expect: 100-continue
Connection: Keep-Alive

<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
  <env:Body>
    <CustomerRequest xmlns="http://tempuri.org">
      <Customer>
        <FirstName>John</FirstName>
        <LastName>Doe</LastName>
      </Customer>
    </CustomerRequest>
  </env:Body>
</env:Envelope>

1 个答案:

答案 0 :(得分:2)

我在您的界面或服务实现中看不到CustomerRequest的任何提及。我认为SOAP请求应该发送Customer而不是CustomerRequest。您可以使用SOAPUI并基于WSDL生成示例请求来验证这一点。会告诉你实际的请求是什么样的。