HTTP Error 401.3 - Unauthorized [closed]
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this questionHi I am trying to consume a web service on a mobile emulator. But I always have this error everytime I add a web reference - "HTTP Error 401.3 - Unauthorized". I already added the web site on the IIS manager 6.0. Is there an easy way to fix this? Thanks in advance!
IIS needs access permissions for IUSR user too... add this user.
If you don't know how, see the link
The same problem solved here
Enable Anonymous Authentication for the web site, then Edit Anonymous Authentication (by right clicking) and change it from a Specific User to Application pool identity
Give IIS_IUSR and IUSR permissions.
Make sure that application pool of your website and website both are running under the same identity. Then make sure that this identity has required permissions on the virtual directory. I had exact same issue and above two checks fixed it.
Go to the following link, you can get more info about the error:
http://forums.iis.net/p/1048841/1477558.aspx
精彩评论