Windows authentication works good when I host my ASP.NET MVC project on IIS. But if I run it from Visual Studio – it doesn’t.
Here is my Web.config:
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
Am I missing something?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
If you are hosting in IIS Express (which you probably should), make sure you have enabled Windows Authentication in the properties of your Web Application.
By the way if you create a new ASP.NET MVC 4 application in Visual Studio using the Intranet Application template you will be greeted with the following Readme on the screen. So go ahead, try it, read it and follow what’s written there:
To use this template with Windows Azure authentication, refer to
http://go.microsoft.com/fwlink/?LinkID=267940.Otherwise, to use this template with Windows authentication, refer to
the instructions below:Hosting on IIS Express:
- Click on your project in the Solution Explorer to select the project.
- If the Properties pane is not open, open it (F4).
- In the Properties pane for your project:
a) Set “Anonymous Authentication” to “Disabled”.
b) Set “Windows Authentication” to
“Enabled”.Hosting on IIS 7 or later:
- Open IIS Manager and navigate to your website.
- In Features View, double-click Authentication.
- On the Authentication page, select Windows authentication. If Windows authentication is not an option, you’ll need to make sure
Windows authentication is installed on the server.To enable Windows authentication on Windows:
a) In Control Panel open “Programs and Features”.
b) Select “Turn Windows features on or off”.
c) Navigate to Internet Information Services > World Wide Web Services > Security and make sure the Windows authentication node is checked.To enable Windows authentication on Windows Server:
a) In Server Manager, select Web Server (IIS) and click Add Role Services.
b) Navigate to Web Server > Security and make sure the Windows authentication node is checked.
- In the Actions pane, click Enable to use Windows authentication.
- On the Authentication page, select Anonymous authentication.
- In the Actions pane, click Disable to disable anonymous authentication.
Method 2
I couldn’t quite get the @Darin Dimitrov solution to work (mainly as I couldn’t find the IIS Express setting described in Visual Studio!).
I found I had to edit the IIS Express application.config file:
- in Visual Studio 2013 this is in
%userprofile%documentsiisexpressconfig - in Visual Studio 2015 this is in the
configfolder in the hidden.vsfolder in the solution (just add.vsconfigin Windows explorer to get there).
and amend:
<windowsAuthentication enabled="false">
to:
<windowsAuthentication enabled="true">
Method 3
I know this is late to the game on this question but for Visual Studio 2019 it changed slightly. So if you find yourself sorting through this for that solution in debugger:
From : Microsoft Documentation
And taken from that page, which did work for me:
Existing project
The project’s properties enable Windows Authentication and disable Anonymous Authentication:
Right-click the project in Solution Explorer and select Properties.
Select the Debug tab.
Clear the checkbox for Enable Anonymous Authentication.
Select the checkbox for Enable Windows Authentication.
Save and close the property page.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0