0

1- I've publish web service in v.s.2012 and automatically creates the .zip file. 2- but in IIS , after clicking 'browse' option the i got "HTTP Error 401.3 - Unauthorized. You do not have permission to view this directory or page because of the access control list (ACL) configuration or encryption settings for this resource on the Web server."

Ritesh
  • 533
  • 2
  • 7
  • 18

1 Answers1

0

Make sure the IUSR account has enough permission on the wwwroot folder. It is the default user for anonymous authentication. (Rightclick on wwwroot -> properties -> security -> select IUSR)

screenshoot wwwroot -> properties

EDIT: Also found this post with the same Problem, also explaining the above posible solution and others, maybe this helps: ASP pages in IIS using Localhost 401.3 Error do not have permission

Community
  • 1
  • 1
Jodo
  • 4,515
  • 6
  • 38
  • 50
  • I already add IUSER and allow all permssion to IUSER and IIS_IUSER, but error is still the same. – Ritesh Feb 19 '15 at 05:50