9
現在我有這樣定義的安全節點:如何強制.net WCF客戶端在basicHttpBinding中使用NTLM?
The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'NTLM'.
現在我有這樣定義的安全節點:如何強制.net WCF客戶端在basicHttpBinding中使用NTLM?
The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'NTLM'.
更改您的clientCredentialType爲 「NTML」:
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
即時得到下面的錯誤。
THANKYOU - 您節省了很多負載平衡的問題 – 2015-02-23 22:35:55