Ask a Question related to ASP.NET Security, Design and Development.
-
Travis A. Clark #1
ADS IIS Integration
Okay, maybe I'm just not seeing things correctly.
I have an asp.net web application (framework 1.1) that only five
people in the ProjectManager AD Group are supposed to see.
I have the following issues:
Even though I have:
<authentication mode="Windows" />
<authorization>
<allow users="DOMAIN\ProjectManager" />
<deny users="*"/>
</authorization>
in my web.config, and I believe the correct IIS settings (Windows
2000, IIS 5.0, anonymous off, Basic and Windows on)
Anyone in the domain may login and see it. What am I missing?
Secondly, anyone know where a good tutorial is on logging in
automatically. In other words, I want to check their AD credentials
automatically, and if they are in the ProjectManager group, go ahead
and redirect. Else prompt for the logon.
Thanks for the time.
Travis A. Clark
Travis A. Clark Guest
-
RDF integration
Does anyone know of any resources for integration of RDF (Resource Description Framework) data into Flash? -
Flash and C++ Integration
I was wondering if there is any way to use Flash as a menu front end through integrateing it with a Game Engine. The Specific engine we are using... -
Help with PHP and FLEX integration
Hello i was wondering how to use php sessions with flex, i need a way to have secure connections between flex and php. I am using a script i made... -
PHP Dreamweaver Integration
***Apoligies if this is not the right newsgroup for this posting*** I have used Dreamweaver for about a year, and I'm now starting to learn PHP... -
VB.Net-C# integration
I have a ASP.net application written in VB.Net which is the main application. I have another ASP.net application written in C#. I want to integrate... -
Joe Kaplan \(MVP - ADSI\) #2
Re: ADS IIS Integration
This should work. The first thing I would check is whether the users who
shouldn't be allowed access are in the role or not. You can do
Context.User.IsInRole("DOMAIN\ProjectManager") to determine that.
If that fails as expected, but users are still being granted access, then it
might be that the UrlAuthorizationModule has been removed from the list of
HttpModules.
HTH,
Joe K.
"Travis A. Clark" <TravisClark135@hotmail.com> wrote in message
news:26c1af96.0411180814.2ac0d9b5@posting.google.c om...> Okay, maybe I'm just not seeing things correctly.
> I have an asp.net web application (framework 1.1) that only five
> people in the ProjectManager AD Group are supposed to see.
> I have the following issues:
>
> Even though I have:
> <authentication mode="Windows" />
> <authorization>
>
> <allow users="DOMAIN\ProjectManager" />
> <deny users="*"/>
> </authorization>
> in my web.config, and I believe the correct IIS settings (Windows
> 2000, IIS 5.0, anonymous off, Basic and Windows on)
>
> Anyone in the domain may login and see it. What am I missing?
>
> Secondly, anyone know where a good tutorial is on logging in
> automatically. In other words, I want to check their AD credentials
> automatically, and if they are in the ProjectManager group, go ahead
> and redirect. Else prompt for the logon.
>
> Thanks for the time.
>
> Travis A. Clark
Joe Kaplan \(MVP - ADSI\) Guest
-
Patrick.O.Ige #3
RE: ADS IIS Integration
Travis..
Your Solution is for sure solvable...
I have used forms Auth and Windows Auth(validating against Active Directory)
for
this before...
Try looking at this artcilse at:-
[url]http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q316748[/url]
for forms Auth?
Hope it helps..
Patrick
"Travis A. Clark" wrote:
> Okay, maybe I'm just not seeing things correctly.
> I have an asp.net web application (framework 1.1) that only five
> people in the ProjectManager AD Group are supposed to see.
> I have the following issues:
>
> Even though I have:
> <authentication mode="Windows" />
> <authorization>
>
> <allow users="DOMAIN\ProjectManager" />
> <deny users="*"/>
> </authorization>
> in my web.config, and I believe the correct IIS settings (Windows
> 2000, IIS 5.0, anonymous off, Basic and Windows on)
>
> Anyone in the domain may login and see it. What am I missing?
>
> Secondly, anyone know where a good tutorial is on logging in
> automatically. In other words, I want to check their AD credentials
> automatically, and if they are in the ProjectManager group, go ahead
> and redirect. Else prompt for the logon.
>
> Thanks for the time.
>
> Travis A. Clark
>Patrick.O.Ige Guest



Reply With Quote

