Why is my ASP.NET MVC Application requesting Windows Authentication? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T15:04:09Z http://stackoverflow.com/feeds/question/844117 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/844117/why-is-my-asp-net-mvc-application-requesting-windows-authentication 0 Why is my ASP.NET MVC Application requesting Windows Authentication? Whozumommy 2009-05-09T21:28:40Z 2009-05-09T22:26:57Z <p>I've been building a ASP.NET MVC application and using forms authentication. In my controller action I have:</p> <p>[Authorize(Users = "me,joe")] </p> <p>that has been working great. Last night when I published the newest changes and attempt to view my website it started popping up a Windows Authentication dialog box. I've looked at all my code and cannot figure out WHY it would change to Windows authentication. My web.config file has not changed in at least 10 days. If I run the code from my dev box it does not do this...only when it is run from my host. And if I remove the Authorize line from my controller action it does not happen.</p> <p>How can I fix this or how can I debug my solution to see why this is happening?</p> <p>BTW, my web.config says:</p> <pre><code>&lt;authentication mode="Forms"&gt; &lt;forms loginUrl="~/Account/LogOn" timeout="2880" /&gt; &lt;/authentication&gt; </code></pre> http://stackoverflow.com/questions/844117/why-is-my-asp-net-mvc-application-requesting-windows-authentication/844126#844126 2 Answer by j0tt for Why is my ASP.NET MVC Application requesting Windows Authentication? j0tt 2009-05-09T21:32:51Z 2009-05-09T21:32:51Z <p>This is most likely do to IIS settings for authentication and permissions on the website's folder on the web server. I would check both of those before anything else.</p> http://stackoverflow.com/questions/844117/why-is-my-asp-net-mvc-application-requesting-windows-authentication/844127#844127 0 Answer by Issa Qandil for Why is my ASP.NET MVC Application requesting Windows Authentication? Issa Qandil 2009-05-09T21:33:46Z 2009-05-09T21:33:46Z <p>I think you need to set the permissions for IUSER, IWAM</p> <p>Using the Windows Explorer browse to the folder you are wanting to grant permissions. Right click on the folder and select "properties". In the resulting dialog click on the "Security" tab near the top. You can then add or edit security for these accounts (IUSR_machineName, IWAM_macnineName, and ASPNET).</p> http://stackoverflow.com/questions/844117/why-is-my-asp-net-mvc-application-requesting-windows-authentication/844207#844207 1 Answer by Gabe for Why is my ASP.NET MVC Application requesting Windows Authentication? Gabe 2009-05-09T22:26:57Z 2009-05-09T22:26:57Z <p>I'm just shooting in the dark, but do you have an <code>&lt;identity&gt;</code> setting in your web.config?</p> <pre><code> &lt;system.web&gt; ... &lt;identity impersonate="true"/&gt; ... &lt;/system.web&gt; </code></pre> <p>If so, it might help to remove this line. It might also help to ask your hosting provider why Windows Authentication is suddenly being applied to your web site. As others have mentioned there are IIS settings which could be causing this behavior.</p>