in this MSDN article about WCF Configuration Schema theres a warning saying:
You should protect WCF configuration sections in your application configuration files (app.config) with appropriate Access Control Lists (ACL) to prevent any potential security threats. For example, you should make sure that only the appropriate people can access or modify the security settings on application bindings, or the service model section of the configuration file for a service.
And that's exactly what I need for my WCF services but I can't find much information in how to achieve this type of protection.
Can someone please provide me any examples in how to protect WCF configuration file's sections with Access Control Lists (ACLs) or point me more info about this subject?
Thanks in advance.