I\'m launching asp.net mvc 3 apllication on ii6. No membership or role providers are used. I have implemented authorization by creating authorization cookie manually, and handle
Solved. IIS6 does not recognize <system.webServer> (it was introduced in IIS7), and I used <httpModules> in <system.web> instead:
<system.webServer>
<httpModules>
<system.web>
<system.web> ... <httpModules> <remove name="RoleManager" /> </httpModules> ... <system.web>