IIS 7.5 What am I doing wrong?

Posted by chugh97 on Stack Overflow See other posts from Stack Overflow or by chugh97
Published on 2010-05-19T08:25:45Z Indexed on 2010/05/19 8:30 UTC
Read the original article Hit count: 468

Filed under:
|
|
|

In IIS 7.5 under Windows 7 Utilmate, I have an application which is configured for authentication as follows: Anonymous & Windows

In the ASP.NET Website, I have turned Forms authentication and identity impersonate = true I also deny any anonymous users.

<authentication mode="Forms">
</authentication>
<identity impersonate="true"/>
<authorization>
<deny user="?">
</authorization>

IIS complains. What am I doing wrong... What I want to achieve :I want the windows Logged On User so I can build a FormsAuthentication ticket and pass it to a Passive STS. So in IIS I have anonymous and windows...If have only windows ticked, I cannot go onto the Login.aspx page as I have an extra parameter to be passed from there. So now in webconfig, I then disable anonymous users by saying deny user="?" , so it leaves me with the authenticated windows user but using Forms Authentication.You know what I mean??

© Stack Overflow or respective owner

Related posts about iis7.5

Related posts about passive-sts