我有一个 WCF 网络服务,它使用NetTcpBinding
带有传输安全性并clientCredientialType
设置为none
. 我没有使用此绑定在端点上指定身份。每次尝试调用服务上的方法都会导致以下错误:
客户端:
System.ServiceModel.Security.SecurityNegotiationException:对 SSPI 的调用失败,请参阅内部异常。
服务端:
System.ServiceModel.Security.SecurityNegotiationException:远程身份验证失败(流可能仍可用于其他身份验证尝试)。
System.ComponentModel.Win32Exception:目标主体名称不正确
对此的任何帮助表示赞赏
谢谢
Sj