ASP.NET MVC Urls and IIS Integrated Windows Authentication - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:34:22Z http://stackoverflow.com/feeds/question/1007041 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1007041/asp-net-mvc-urls-and-iis-integrated-windows-authentication 2 ASP.NET MVC Urls and IIS Integrated Windows Authentication JonoW 2009-06-17T13:31:24Z 2009-07-22T06:48:15Z <p>I have an ASP.NET MVC app which is completely behind Forms Authentication. However there is one set of routes (/report/%) I need to force integrated windows authentication on, as those pages need to impersonate the current user (for security reasons). </p> <p>If I set the whole site to integrated windows authentication this all works, except that firefox prompts users for the username/password twice as they hit the sites home page (once for windows authentication, then again for the forms authentication) whereas IE only prompts for forms authentication. This is fine and I know this is the default behavior of Firefox, however so as not to anoy users I've been asked to restrict the windows authentication requirement to only the /report/* section of the site, so they only get prompted if they go to any page within /report/%.</p> <p>In ASP.NET WebForms this is easy enough as there is a physcial /report folder to place the authentication config on, but in MVC this URL is virtual, so I can't do this. Does anyone know a good way to do this? I've tried to create a "gateway" aspx page that users need to go through first before redirecting to the appropriate report page, and although Firefox does prompt the user for their windows credentials at the right point, it doesn't seem to keep sending those details for subsequent requests to any of the /report/% pages. Any ideas? Would be super grateful!</p> http://stackoverflow.com/questions/1007041/asp-net-mvc-urls-and-iis-integrated-windows-authentication/1008274#1008274 0 Answer by mannish for ASP.NET MVC Urls and IIS Integrated Windows Authentication mannish 2009-06-17T16:48:26Z 2009-06-17T16:48:26Z <p>You can't manage mixed mode authentication through the web.config. There's a decent (long) article <a href="http://www.15seconds.com/Issue/050203.htm" rel="nofollow">here</a> that describes one way of getting around that limitation.</p> http://stackoverflow.com/questions/1007041/asp-net-mvc-urls-and-iis-integrated-windows-authentication/1161557#1161557 1 Answer by Francisco for ASP.NET MVC Urls and IIS Integrated Windows Authentication Francisco 2009-07-21T20:21:25Z 2009-07-21T20:21:25Z <p>Maybe you're looking for <a href="http://davidhayden.com/blog/dave/archive/2009/04/09/CustomAuthorizationASPNETMVCFrameworkAuthorizeAttribute.aspx" rel="nofollow">this</a> ?</p> http://stackoverflow.com/questions/1007041/asp-net-mvc-urls-and-iis-integrated-windows-authentication/1163453#1163453 3 Answer by eyesnz for ASP.NET MVC Urls and IIS Integrated Windows Authentication eyesnz 2009-07-22T06:48:15Z 2009-07-22T06:48:15Z <p>Just recently I had to do something similar. I had a requirement of Forms Authentication for most of my asp.net MVC app, with one part that needed Windows Authentication.</p> <p>What I ended up doing was to split my web app into two projects.</p> <p>The first project was hosted in the root of the web site under IIS. This was running Forms Authentication.</p> <p>The second project was hosted as a virtual directory of the same web site. This was running Windows Authentication.</p> <p>The only tradeoff is that you may end up with a URL of /reports/reports/% (or whatever you name the virtual directory)</p>