Windows Authentication with Asp.net and against Active Directory

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

  1. #1

    Default Windows Authentication with Asp.net and against Active Directory

    How can i use Windows authentication in IIS against AD.
    How will i create a WindowsPrincipal object(with asp.net) in the
    Context.User property that is used for providing identity and authorization
    services to my application.
    How will i use the IsInRole method in WindowsPrincipal to return true or
    false based on the user's AD group membership.
    If u have any code articles and resources please pass it over
    Patrick Guest

  2. Similar Questions and Discussions

    1. Using Windows Integrated Authentication to access Active Directory
      Hi, I have disabled "Anonymous Access" & enabled "Integrated Windows Authentication" on the web server for my ASP.NET application. My Web.config...
    2. Using Integrated Windows Authentication to access Active Directory
      Hi, I have disabled "Anonymous Access" & enabled "Integrated Windows Authentication" on the web server for my ASP.NET application. My Web.config...
    3. Authentication against active directory
      Hello I am developing a ASP.NET site (using VB). I found some code that allows me to authenticate the user trying to access the site against the...
    4. Forms or windows authentication with active directory?
      Hi, I'm having a hard time deciding (figuring out) how to implement security in my asp.net application. Requirements: - Use active directory as...
    5. Active Directory Authentication in ASP
      I have been attempting to find a script that works in a variety of AD implementations to authenticate a user from a form in ASP. After many failed...
  3. #2

    Default Re: Windows Authentication with Asp.net and against Active Directory

    In IIS, disable anonymous auth, enabled Windows Integrated Auth
    In Web.config have something like :-
    <identity impersonate="true" />
    <authorization>
    <allow roles="DOMAIN\DomainGroup" />
    <deny users="*" />
    </authorization>

    --
    - Paul Glavich
    Microsoft MVP - ASP.NET


    "Patrick" <Patrick@discussions.microsoft.com> wrote in message
    news:37B151D7-ADE9-4FC1-828F-64CBEFDDAAF4@microsoft.com...
    > How can i use Windows authentication in IIS against AD.
    > How will i create a WindowsPrincipal object(with asp.net) in the
    > Context.User property that is used for providing identity and
    authorization
    > services to my application.
    > How will i use the IsInRole method in WindowsPrincipal to return true or
    > false based on the user's AD group membership.
    > If u have any code articles and resources please pass it over

    Paul Glavich [MVP - ASP.NET] 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