Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTP Error 401.2 - Unauthorized You are not authorized to view this page due to invalid authentication headers

i want to allow access to Anonymous.aspx page to all user, i have set Basic Authentication to Enabled, and Connect as to specific user.

my problem is when trying to access http://MyIPAddress/MyAlias/Anonymous.aspx, authentication popup appears--ideally it shouldn't, and when i close popup, getting 401.2 Unauthorized error--it's obvious

Error Summary

HTTP Error 401.2 - Unauthorized You are not authorized to view this page due to invalid authentication headers. Error Code 0x80070005

below is snap of my web.config file.

<configuration>    <system.web>        <authentication mode=“Windows“/>    </system.web>     <location path=“Anonymous.aspx“>        <system.web>           <authorization>               <allow users=“*“/>           </authorization>        </system.web>    </location>  </configuration> 

how can i solve this error.

like image 802
BrainCoder Avatar asked Feb 06 '14 12:02

BrainCoder


People also ask

How do I fix a 401.2 error?

Internet Explorer HTTP Error 401.2 Unauthorized PrintSelect Authentication and click Open Feature in the right pane or right click and select Open Feature. Windows Authentication will need to be Enabled. Select it and click Enable in the right pane, or right click and select Enable.

What is IIS anonymous authentication?

Anonymous authentication gives users access to the public areas of your Web or FTP site without prompting them for a user name or password. By default, the IUSR account, which was introduced in IIS 7.0 and replaces the IIS 6.0 IUSR_computername account, is used to allow anonymous access.


1 Answers

Make sure Anonymous access is enabled on IIS -> Authentication.

But also right click on it, then click on Edit, and choose a domain\username and password. (With access to the physical folder of the application).

like image 108
Oscar Ortiz Avatar answered Sep 22 '22 21:09

Oscar Ortiz