What are the differences between security mode="Transport" and security mode="TransportCredentialOnly"

Ybbest picture Ybbest · Dec 19, 2010 · Viewed 50.1k times · Source

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?

Answer

ItsPronounced picture ItsPronounced · Dec 19, 2010

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!

Good Luck!!