Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Security > Integrated Windows authentiation does not working

Reply
Thread Tools

Integrated Windows authentiation does not working

 
 
WiZARD
Guest
Posts: n/a
 
      02-04-2006
content of web.config file(briefly) -------
<Admins>
<add key="EXPLORER\Administrator" value=""/>
<add key="EXPLORER\Administrators" value=""/>
<add key="EXPLORER\Debugger Users" value=""/>
</Admins>
......
<authentication mode="Windows" />
<authorization>
<allow users="*" />
</authorization>
--------------------------------------------------------------

Web Application used Integrated Windows authentiation.

In debug (VisualStudio 2003) I see next:
------------------------------------------
AuthenticationType ""
IsAuthenticated false
Name ""
HttpContext.Current.User.Identity.IsAuthenticated false

AuthenticationType "" string
IsAnonymous true bool
IsAuthenticated false bool
IsGuest false bool
IsSystem false bool
m_acctType Anonymous System.Security.Principal.WindowsAccountType
m_isAuthenticated false bool
--------------------------------------------------
Seems what Integrated Windows authentiation does not working.
QUESTION:
How can I solve this problem?
Thanks in advice.
 
Reply With Quote
 
 
 
 
Dominick Baier [DevelopMentor]
Guest
Posts: n/a
 
      02-04-2006
hi,

have you disabled anonymous authentication in IIS?

---------------------------------------
Dominick Baier - DevelopMentor
http://www.leastprivilege.com

> content of web.config file(briefly) -------
> <Admins>
> <add key="EXPLORER\Administrator" value=""/>
> <add key="EXPLORER\Administrators" value=""/>
> <add key="EXPLORER\Debugger Users" value=""/>
> </Admins>
> .....
> <authentication mode="Windows" />
> <authorization>
> <allow users="*" />
> </authorization>
> --------------------------------------------------------------
>
> Web Application used Integrated Windows authentiation.
>
> In debug (VisualStudio 2003) I see next:
> ------------------------------------------
> AuthenticationType ""
> IsAuthenticated false
> Name ""
> HttpContext.Current.User.Identity.IsAuthenticated false
> AuthenticationType "" string
> IsAnonymous true bool
> IsAuthenticated false bool
> IsGuest false bool
> IsSystem false bool
> m_acctType Anonymous
> System.Security.Principal.WindowsAccountType
> m_isAuthenticated false bool
> --------------------------------------------------
> Seems what Integrated Windows authentiation does not working.
> QUESTION:
> How can I solve this problem?
> Thanks in advice.



 
Reply With Quote
 
 
 
 
Patrick.O.Ige
Guest
Posts: n/a
 
      02-11-2006
To add to Dominicks advice
You will need to disble anonymous in IIS to get things started.
Patrick

"Dominick Baier [DevelopMentor]" <>
wrote in message news:. com...
> hi,
> have you disabled anonymous authentication in IIS?
>
> ---------------------------------------
> Dominick Baier - DevelopMentor
> http://www.leastprivilege.com
>
>> content of web.config file(briefly) -------
>> <Admins>
>> <add key="EXPLORER\Administrator" value=""/>
>> <add key="EXPLORER\Administrators" value=""/>
>> <add key="EXPLORER\Debugger Users" value=""/>
>> </Admins>
>> .....
>> <authentication mode="Windows" />
>> <authorization>
>> <allow users="*" />
>> </authorization>
>> --------------------------------------------------------------
>>
>> Web Application used Integrated Windows authentiation.
>>
>> In debug (VisualStudio 2003) I see next:
>> ------------------------------------------
>> AuthenticationType ""
>> IsAuthenticated false
>> Name ""
>> HttpContext.Current.User.Identity.IsAuthenticated false
>> AuthenticationType "" string
>> IsAnonymous true bool
>> IsAuthenticated false bool
>> IsGuest false bool
>> IsSystem false bool
>> m_acctType Anonymous
>> System.Security.Principal.WindowsAccountType
>> m_isAuthenticated false bool
>> --------------------------------------------------
>> Seems what Integrated Windows authentiation does not working.
>> QUESTION:
>> How can I solve this problem?
>> Thanks in advice.

>
>



 
Reply With Quote
 
WiZARD
Guest
Posts: n/a
 
      02-12-2006
Thenks for advice.....
problem solved.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Debugging failed because integrated Windows authentication is not enabled Dariusz Tomon ASP .Net 3 10-24-2010 06:23 AM
Integrated Windows Authentication not working Stephane ASP .Net 1 10-10-2008 01:09 PM
Events not firing with Integrated Windows Authentication Ken Cooper ASP .Net 0 10-12-2006 02:56 PM
no timeout in form authentiation =?Utf-8?B?bnBidWdnaWE=?= ASP .Net 3 02-17-2006 01:28 PM
Q: integrated windows does not work =?Utf-8?B?SklNLkgu?= ASP .Net 0 06-24-2005 01:34 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57