具有复杂类型和命名空间的WCF MessageBodyMember

时间:2017-10-14 12:29:41

标签: c# wcf messagecontract

我必须为给定的客户端实现WCF服务,因此命名空间和Contract不是由我定义的。问题是,当我使用复杂类型作为MessageBodyMember时,在服务器端,给定成员在我的服务器端设置为null。

以下是示例请求:

<?xml version="1.0" encoding="utf-8" ?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Header>
        <ns1:CustomeHeader xmlns:ns1="HEADER_NAMESPACE">
            <version>1.0</version>
        </ns1:CustomeHeader>
    </soapenv:Header>
    <soapenv:Body>
        <ns2:in4 xmlns:ns2="NAMESPACE_1">
            <ns39:userID xmlns:ns39="NAMESPACE_2">
                <ns40:ID xmlns:ns40="NAMESPACE_3">someFakeID_123</ns40:ID>
                <ns41:type xmlns:ns41="NAMESPACE_3">0</ns41:type>
            </ns39:userID>
        </ns2:in4>
    </soapenv:Body>
</soapenv:Envelope>

如您所见,userID是一个复杂类型,其成员已定义名称空间。我正在谈论的是MessageBodyMember。

这是我的服务和实现的接口定义:

[XmlSerializerFormat]
public interface IIntegrationService
{
    [OperationContract]
    [XmlSerializerFormat]
    SyncOrderRelationshipRsp syncOrderRelationship(SyncOrderRelationshipReq syncOrderRelationshipReq);
}

[ServiceContract]
public class IntegrationService : IIntegrationService
{
    public SyncOrderRelationshipRsp syncOrderRelationship(SyncOrderRelationshipReq syncOrderRelationshipReq)
    {
        //some code here ...
    }
}

以下是SyncOrderRelationshipReqUserID的定义:

[MessageContract(IsWrapped = true, WrapperName = "in4", WrapperNamespace = "HEADER_NAMESPACE")]
public class SyncOrderRelationshipReq
{
    [MessageHeader(Namespace = "HEADER_NAMESPACE")]
    public IBSoapHeader IBSoapHeader { get; set; }

    [MessageBodyMember(Namespace = "NAMESPACE_2")]
    public UserID userID { get; set; }
}

[MessageContract(WrapperNamespace = "NAMESPACE_2", IsWrapped = true)]
public class UserID
{
    [MessageBodyMember(Namespace = "NAMESPACE_3")]
    public string ID { get; set; }

    [MessageBodyMember(Namespace = "NAMESPACE_3", Name = "type")]
    public int Type { get; set; }
}

总而言之,我需要MessageBodyMember的内部成员设置自己的命名空间,以便我可以阅读这些成员。

1 个答案:

答案 0 :(得分:2)

我终于找到了答案。对于任何来到这里寻找答案的人来说,这就是答案。 首先,您应该将XmlSerializerFormat属性添加到您的服务界面(我已经这样做了)。

其次,您应该将XmlType属性用于复杂类型类。

第三,对复杂类型属性使用XmlElement属性。

所以,UserId类应该是这样的:

[XmlType]
public class UserID
{
    [XmlElement(Namespace = "NAMESPACE_3")]
    public string ID { get; set; }

    [XmlElement(Namespace = "NAMESPACE_3", Name = "type")]
    public int Type { get; set; }
}

我希望它可以帮助别人。