Security mode="None
security, wcf
Solution
This is just basically NO SECURITY at all - that doesn't make any sense at all - except for maybe development time :-)
If you have `<security mode="None">` then anything you specify below is not taken into account - you could leave that out just as well.
Problem
I have some collegues who have build a WCF Service. Their security settings are the following: ``` security mode="None" transport clientCredentialType="Windows" proxyCredentialType="None" realm="" message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true" security ``` Does it makes sense to specify the security mode="None" and then specify transport/message security underneath?