WCF CustomBing异常 - AddressingNone不支持添加WS-Addressing标头

时间:2012-08-23 12:07:02

标签: c# wcf custom-binding

当我使用实用创建的CustomBinding时,我一直收到以下异常。

寻址版本'AddressingNone(http://schemas.microsoft.com/ws/2005/05/addressing/none)'不支持添加WS-Addressing标头。

有什么办法可以解决这个问题吗?

private static CustomBinding CreateCustomBinding(bool useHttps)
{
    BindingElement security;
    BindingElement transport;
    if (useHttps)
    {
        security = SecurityBindingElement.CreateSecureConversationBindingElement(
            SecurityBindingElement.CreateUserNameOverTransportBindingElement());
        transport = new HttpsTransportBindingElement
        {
            MaxBufferPoolSize = 2147483647,
            MaxBufferSize = 2147483647,
            MaxReceivedMessageSize = 2147483647,
        };
    }
    else
    {
        security = SecurityBindingElement.CreateSecureConversationBindingElement(
            SecurityBindingElement.CreateUserNameForSslBindingElement(true));
        transport = new HttpTransportBindingElement
        {
            MaxBufferPoolSize = 2147483647,
            MaxBufferSize = 2147483647,
            MaxReceivedMessageSize = 2147483647,
        };
    }


    var encoding = new MtomMessageEncodingBindingElement
    {
        MaxReadPoolSize = 64,
        MaxWritePoolSize = 16,
        MaxBufferSize = 2147483647,
        MessageVersion = MessageVersion.Soap11,
        WriteEncoding = System.Text.Encoding.UTF8
    };

    //var encoding = new TextMessageEncodingBindingElement();


    var customBinding = new CustomBinding();

    customBinding.Elements.Add(security);
    customBinding.Elements.Add(encoding);
    customBinding.Elements.Add(transport);

    return customBinding;
}  

2 个答案:

答案 0 :(得分:3)

以防万一有兴趣,以下是我的解决方案。我添加了if来处理文本编码部分,还更新了SecurityBindingElement下的if (useHttps)

private static CustomBinding CreateCustomBinding(bool useHttps, bool textEncoding)
{
    BindingElement security;
    BindingElement encoding;
    BindingElement transport;
    if (useHttps)
    {
        var seq = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
        seq.MessageSecurityVersion =
            MessageSecurityVersion.
                WSSecurity11WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10;
        seq.SecurityHeaderLayout = SecurityHeaderLayout.Lax;
        seq.DefaultAlgorithmSuite = SecurityAlgorithmSuite.Default;

        security = seq;
        transport = new HttpsTransportBindingElement
        {
            MaxBufferPoolSize = 2147483647,
            MaxBufferSize = 2147483647,
            MaxReceivedMessageSize = 2147483647,
        };
    }
    else
    {
        security = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
        transport = new HttpTransportBindingElement
        {
            MaxBufferPoolSize = 2147483647,
            MaxBufferSize = 2147483647,
            MaxReceivedMessageSize = 2147483647,
        };
    }

    if (textEncoding)
        encoding = new TextMessageEncodingBindingElement
        {
            MaxReadPoolSize = 64,
            MaxWritePoolSize = 16,
            MessageVersion = MessageVersion.Soap11,
            WriteEncoding = System.Text.Encoding.UTF8
        };
    else
        encoding = new MtomMessageEncodingBindingElement
        {
            MaxReadPoolSize = 64,
            MaxWritePoolSize = 16,
            MaxBufferSize = 2147483647,
            MessageVersion = MessageVersion.Soap11,
            WriteEncoding = System.Text.Encoding.UTF8
        };

    var customBinding = new CustomBinding();

    customBinding.Elements.Add(security);
    customBinding.Elements.Add(encoding);
    customBinding.Elements.Add(transport);

    return customBinding;
}

答案 1 :(得分:0)

它对我来说很有变化。谢谢Tawani。我只为HTTPSTransportBinidingElement将AuthenticationSheme设置为Basic。

transport = new HttpsTransportBindingElement
            {
                MaxBufferPoolSize = 2147483647,
                MaxBufferSize = 2147483647,
                MaxReceivedMessageSize = 2147483647,
                AuthenticationScheme = System.Net.AuthenticationSchemes.Basic
            };