我有一些同事已经建立了WCF服务。他们的安全设置如下:
security mode="None"
transport clientCredentialType="Windows" proxyCredentialType="None" realm=""
message clientCredentialType="Windows" negotiateServiceCredential="true"
establishSecurityContext="true"
security
指定安全模式=“无”然后在下面指定传输/消息安全性是否有意义?
答案 0 :(得分:5)
这基本上只是 NO SECURITY - 根本没有任何意义 - 除了可能的开发时间: - )
如果您有<security mode="None">
,那么下面指定的任何内容都不会被考虑在内 - 您也可以将其保留下来。
答案 1 :(得分:1)
没有坏处,mode =“None”值表示不会使用任何消息或传输的单独设置。