时间:2010-07-23 19:12:01

标签: wcf wcf-binding

1 个答案:

答案 0 :(得分:1)

假设您使用HTTPS进行传输,请尝试使用:

UserNameOverTransport,以便“安全”传输用于交换凭据,而不是尝试设置“安全”消息通道。

此外,secureConversationBootstrap也是多余的,因为它仅在authenticationMode="SecureConversation"

时使用
<customBinding>
    <binding name="b1">
        <security authenticationMode="UserNameOverTransport"/>
        <binaryMessageEncoding/>
        <httpsTransport/>
    </binding>
</customBinding>

如果您希望所有内容都清晰明了,请使用<httpTransport/>