vote up 0 vote down star

In IIS7 under Windows Server 2008, I have a virtual directory with anonymous access off and Windows authentication on. In my web.config, I have:

<authentication mode="Windows"/>
<authorization>
    		<allow roles="MYGROUP"/>
    		<deny users="*"/>
</authorization>

and

<system.webServer>
    <!-- IIS7 security settings -->
    <security>
    	<authorization>
    			<add accessType="Deny" users="*"/>
    			<add accessType="Allow" roles="MYGROUP"/>
    	</authorization>
    </security>
</system.webServer>

Yet when I access default.aspx from IE and set a breakpoint in Global.asax.vb Application_AuthenticateRequest(), I get a null HttpContext.Current.User where I am expecting my own identity. It is almost as if Anonymous Access is on?

What can I do to troubleshoot this? Everything seems to work in IIS6.

flag

43% accept rate
BTW, I looked here: codesnip.net/iis7-integrated-windows-authenticati… -- and everything looks good according to that. – Patrick Szalapski Nov 2 at 21:07

1 Answer

vote up 0 vote down

II7 has integrated authentication. You can set it back to the old type by changing the Application Pool back to classical in the basic settings in IIS.

*Caution this is just an explanation and example, you may want to use the integrated authentication and do something different.

link|flag
I must be missing something--IIS6 had "Integrated Windows Authentication" too. It is the first option under Authenticated Access in Directory Security > Authentication and access control > edit. What am I missing? – Patrick Szalapski Nov 2 at 21:08
I didn't think what I am trying to do is "old type"--surely Microsoft isn't phasing out Windows Authentication. Where can I see info on the "new way" of doing authentication? – Patrick Szalapski Nov 2 at 21:12
@Patrick: In II6 there were two levels of Authentication that were hit for each .NET request. First the windows one, then the ISAPI would find out it was a .NET request and then .NET would do its own Authentication. In IIS7 .NET was integrated into the Web Server and now there is only one Authentication. As far as I understand it. MSDN would likely be the unfortunate choice for the new way, if you don't want to go with the old way. – Yuriy Faktorovich Nov 2 at 21:21
Does this new way have a name so that I can search for it? Everything I search for seems to be referring to the old way. – Patrick Szalapski Nov 2 at 21:26
@Patrick: you can find it on msdn: In IIS 7, application pools run in one of two modes: integrated mode and classic mode. The application pool mode affects how the server processes requests for managed code, link: technet.microsoft.com/en-us/library/… – Yuriy Faktorovich Nov 2 at 21:29
show 2 more comments

Your Answer

Get an OpenID
or

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