问题描述
security mode="Transport"
和 security mode="TransportCredentialOnly"
与 BasicHttpBinding
和设置一起使用时有什么区别ISS 7.0 中的 ssl?
What are the differences between security mode="Transport"
and security mode="TransportCredentialOnly"
when I use it with BasicHttpBinding
and setup ssl in ISS 7.0?
推荐答案
检查这里:http://developers.de/blogs/damir_dobric/archive/2006/07/31/890.aspx和http://msdn.microsoft.com/en-us/library/ff648505.aspx
Transport
似乎需要 HTTPS 来加密凭据,如果没有 SSL,则会抛出异常.TransportCredentialOnly
将以纯文本和未加密的形式发送凭据,建议仅用于测试!
Transport
seems to require HTTPS to encrypt credentials and throws an exception if there is no SSL. TransportCredentialOnly
will send the credentials in plain text and unencrypted and is recommended for testing ONLY!
祝你好运!!
这篇关于安全模式=“传输"和“传输"之间有什么区别?和安全模式=“TransportCredentialOnly"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!