I want to enabled only "anonymous authentication" in IIS 7.0 with the change in configuration file(web.config). We are doing the packaging of wcf service and we want to disable all the authentication mode and just want to enable the "anonymous authentication". Is it possible to do it just by web.config and without using IIS user interface.
I have tried following piece of code but it is not working :
<authentication mode="None" />
<authorization>
<allow users = "?" />
</authorization>
**ignore typos