We have website that uses "NT Authority\Network Service".
Response.Write(WindowsIdentity.GetCurrent().Name);
The website uses a WCF Service that is hosted in IIS 7.5. We are getting the following error when we browse the service – “HTTP Error 401.3 – Unauthorized. You do not have permissions to view this directory or page because of the access control list (ACL) configuration or encryption settings for this resource on the Web Server.”
Note: We have already granted Read rights to IIS_IUSRS and IUSR on the folders.
Any idea, how we can resolve this error?
The application pool for the service has following details
.NET Framework version: .NET Framework v4.0.30319
Managed Pipeline mode: Classic
The Application for the service has the following configuration
• Anonymous Authentication: Enabled
• Windows Authentication: Disabled
• ASP.NET impersonation: Disabled
• Forms Authentication: Disabled