I have an MVC site protected using the [Authorize] attributes, but you have a problem on a website that uses Single Sign On on a couple or sites on different servers. I want the Authentication rule to be the reason; is there a way to temporarily disable authentication through web.config so that you can access any or some controller actions that have an authorization attribute without logging in?
EDIT:
I tried adding the following to web.config:
<authentication mode="None" />
But this leads to the fact that all actions decorated with an authorization attribute display blank pages. Actions without authorization continue to work, although
mutex
source share