Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. RDF integration
      Does anyone know of any resources for integration of RDF (Resource Description Framework) data into Flash?
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139