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?
security mode="Transport"
security mode="TransportCredentialOnly"
BasicHttpBinding
Check here: http://developers.de/blogs/damir_dobric/archive/2006/07/31/890.aspx and http://msdn.microsoft.com/en-us/library/ff648505.aspx
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!
Transport
TransportCredentialOnly
Good Luck!!
2.1m questions
2.1m answers
60 comments
57.0k users