Webservice 返回 XML 数据,C# 将值视为 null

Posted

技术标签:

【中文标题】Webservice 返回 XML 数据,C# 将值视为 null【英文标题】:Webservice returns XML data, C# sees the values as null 【发布时间】:2019-08-19 02:39:31 【问题描述】:

在C#中调用一个webservice,当response被反序列化时,值都显示为null。

我已经使用 Fiddler 捕获了数据,并且我可以看到 XML 数据。

请求如下:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"
            xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <s:Header>
        <VsDebuggerCausalityData xmlns="http://schemas.microsoft.com/vstudio/diagnostics/servicemodelsink">
            uIDPoxpsAt2GhixHrH6i2gAkOR8AAAAAYKd3AIdbIUm9jK6F8GyWoHka0EgCtzpMpV5MZKq2eeUACQAA 
        </VsDebuggerCausalityData>
        <o:Security s:mustUnderstand="1"
                    xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
            <u:Timestamp u:Id="_0">
                <u:Created>2019-03-28T01:23:21.589Z</u:Created>
                <u:Expires>2019-03-28T01:28:21.589Z</u:Expires>
            </u:Timestamp>
            <o:UsernameToken u:Id="uuid-7e43c8af-1f07-42dd-89b5-6bc295e5d0f6-1">
                <o:Username>username</o:Username>
                <o:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">password</o:Password>
            </o:UsernameToken>
        </o:Security>
    </s:Header>
    <s:Body>
        <CancelService xmlns="http://tempuri.org/">
            <request xmlns:a="http://schemas.datacontract.org/2004/07/Models" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
                <a:Required_Date i:nil="true"/>
                <a:Service_ID>R-PMSR-19001188</a:Service_ID>
                <a:Provider_Ref>Oliver_Disconnect_BB</a:Provider_Ref>
            </request>
        </CancelService>
    </s:Body>
</s:Envelope>

响应是:

<?xml version="1.0"?>
<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" 
                  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
                  xmlns:mod="http://schemas.datacontract.org/2004/07/Models">
    <soapenv:Body>
        <CancelServiceResponse xmlns="http://tempuri.org/">
            <CancelServiceResult>
                <Status_Code>FAILED</Status_Code>
                <Status_Description>Service_ID=R-PMSR-19001188 not found.</Status_Description>
                <Order_ID></Order_ID>
            </CancelServiceResult>
        </CancelServiceResponse>
    </soapenv:Body>
</soapenv:Envelope>

我的想法不多了……

编辑 1:

ServiceReference3.B2BServiceClient b2BServiceClient = new ServiceReference3.B2BServiceClient();
            var elements = b2BServiceClient.Endpoint.Binding.CreateBindingElements();
            elements.Find<SecurityBindingElement>().EnableUnsecuredResponse = true;
            b2BServiceClient.Endpoint.Binding = new CustomBinding(elements);

            ServiceReference3.CancelRequest cancelRequest = new ServiceReference3.CancelRequest
            
                Service_ID = "R-PMSR-19001188",
                Provider_Ref = "Oliver_Disconnect_BB"
            ;

            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls | SecurityProtocolType.Ssl3;

            b2BServiceClient.ClientCredentials.UserName.UserName = "username";
            b2BServiceClient.ClientCredentials.UserName.Password = "password";

            ServiceReference3.Response response = b2BServiceClient.CancelService(cancelRequest);

编辑 2:除此之外,我还看到 ExtensionData 中的值也在响应中传回。

【问题讨论】:

如何反序列化响应? 我已经添加了发送请求和收到响应的代码。 为什么要取消请求?在使用 fiddler 时逐步执行代码。找出 xml 响应发生在哪一行。然后看看c#代码是返回数据还是null。 不取消请求......我需要调用 CancelService 并需要将 CancelRequest 对象传递给它。 【参考方案1】:

您的消息只有三个属性 Status_Code 、 Status_Description 、 Order_ID 并且您的响应对象具有更多属性。

WCF按顺序反序列化消息,所以如果它在你定义属性的地方没有找到你的消息中的属性,这可能会导致null值,即使该属性在响应消息中。

因此,请在您的回复消息中按顺序包含所有属性。

或者您可以尝试使用 DataMember 的 Order 属性指定模型的反序列化顺序。

 [DataContract]
public  class Parent

 // IsRequired is used to test whether has received the property

 // if not, it will show error. Order could change the order of the property in message 
    [DataMember(IsRequired = true,Order =2)]
    public int Field3  get; set; 
   [DataMember(IsRequired = true,Order =1)]
   public int Field1  get; set; 


尝试将 Status_Code 的顺序指定为 first , Status_Description 为 second 等等,看看这是否解决了您的问题。

【讨论】:

除此之外,我已经玩弄了排序,值仍然返回为空(尽管提琴手显示数据返回)【参考方案2】:

最后,找出问题所在。从 wsdl 生成的 Reference.cs,Response 类的数据契约有错误的命名空间。

改成:

[System.Runtime.Serialization.DataContractAttribute(Name="Response", Namespace="http://tempuri.org/")]

来自

[System.Runtime.Serialization.DataContractAttribute(Name="Response", Namespace="http://schemas.datacontract.org/2004/07/Models")]

暂时解决了这个问题。

【讨论】:

以上是关于Webservice 返回 XML 数据,C# 将值视为 null的主要内容,如果未能解决你的问题,请参考以下文章

如何将 json 数据映射到 xml 以从 azure 函数 c# 调用 webservice

在c#中,用soap调用webservice,发送消息并取得webservice方法里返回的内容,用http 的方法

如何使用C#创建WebService

使用 Javascript 函数将数据传输到 C# webservice 并在 json 中获取返回失败

C#通过webservice获取机器人信息

急!!c#中,datalist如何显示从webservice接口中调用的xml格式数据