vote up 3 vote down star
1

Today I changed the application pool identity of our ASP.NET application from "Network Service" to a domain user.

I added the user to the local group "IIS_WPG", done a iisreset just in case, and everything works fine with IE6 and Firefox 3.0

But when I go to the website with IE7, an authentication popup appears, I type my credentials, and then :

HTTP Error 401.1 - Unauthorized: Access is denied due to invalid credentials. Internet Information Services (IIS)

Any ideas ?

flag

2 Answers

vote up 3 vote down check

Typically, if you see an issue with authentication where it works in IE 6 but not IE 7, I'd check to make sure Kerberos is configured correctly.

Running as Network Service, your Kerberos SPNs should attached to the machine account. As a domain account, the SPN's need to be on that account.

As to why IE 6 is different than IE 7, its most likely due to some of the Kerberos HotFixes that apply to CNames and ticket time outs. Search MS Support for "kerberos HotFix"

To turn off Kerberos for the site:

cscript adsutil.vbs set w3svc/###/NTAuthenticationProviders "NTLM"

Where ### is the SiteID from the MetaBase.

link|flag
This is what i've done. Can you just edit your answer to include the path to adsutil ? – mathieu Oct 23 '08 at 6:44
ADsUtil.vbs is typically in the iNetPub\Scripts directory, but can be moved and often is placed in the \Windows\SYstem32\InetSrv directory. – Christopher_G_Lewis Nov 3 '08 at 17:52
THANK GOD I FOUND THIS!!!! – Gabriel GuimarĂ£es Oct 27 at 20:38
vote up 0 vote down

You can try to disable "Enable integrated authentication" in Options, Advanced Settings. But I don't know if there isn't some side effects.

link|flag
Well, yea, that turns of integrated authentication completely. Every authentication request will have a dialog prompt for user/password. Kind of defeats the purpose. – Christopher_G_Lewis May 27 at 20:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.