vote up 0 vote down star

I'm working on a simple ASP.Net page (handler, actually) where I check the value of the LOGON_USER server variable. This works using Visual Studio's built-in web server and it works in other sites deployed to the live intranet site. But it doesn't work on the IIS instance on my local XP machine. How can I fix it, or what's going on if I can't?

flag

63% accept rate

2 Answers

vote up 2 vote down check

What authentication do you have enabled in IIS? Anonmyous, Basic, Digest, Integrated Windows? Sounds to me like anonymous access is enabled/allowed, and nothing else. This would means that LOGON_USER is not populated.

When you access your local IIS, trying using http://127.0.0.1 in particular if you use IE. IE will recognize "localhost" as being in your local trusted zone and will automatically pass your XP login credentials through when Integrated Windows auth is enabled.

link|flag
That did the trick. It seems odd that it worked by default for Visual Studio's built in web server, though. – Joel Coehoorn Sep 12 '08 at 21:19
I cannot definitively tell you why. I can only say that WebDev.WebServer.exe is meant to be a a stripped down HTTP server. It doesn't offer all of the same authentication options, etc. So it wouldn't surprise me that it uses integrated auth only. What about if you use firefox, same result? – Jon Sep 13 '08 at 4:00
Firefox is setup as my default testing browser in VS – Joel Coehoorn Sep 15 '08 at 12:53
vote up 0 vote down

In addition to Jon's answer, IIRC even if you have Integrated Authentication enabled, if Anonymous Authentication is enabled it will take precedence...

link|flag

Your Answer

Get an OpenID
or

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