Access Authentication

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

  1. #1

    Default Access Authentication

    Hi,
    I have an ASP.Net Application,
    This application is accessed based on user identiy authorization.
    This application is hosed on server locted on NT domain (based On AD) groups.

    This application is also accessed from another workgroup (not defined on
    main NT domain).

    I could control the access per user when using
    <authentication mode="Windows"/>

    and
    <authorization>
    <allow users="......./>

    But this will Deny the other workgroup from seeing the application.

    How could I provide the access per user level for two differnt domains.

    Note:
    The IIS security settings is: Anonmous Access and Integrated Windows Auth.


    Help


    --
    MCSD not .Net yet :(
    Shaker Guest

  2. Similar Questions and Discussions

    1. Access to page with web authentication
      Hi, I want to automatically access the data on a web page that is protected by basic web authentication. I have tried <cfinvoke> with a...
    2. Novell iChain Authentication before Webservice Access.
      Please Help, Does anyone now how to code access for a webservice that is protected by Novel iChain. Firstly the service is over SSL and then you...
    3. Access Denied using Windows Authentication. WSE 2.0
      Subject: Access Denied using Windows Authentication. WSE 2.0 When using custom authentication (using the UsernameTokenManager interface.) I...
    4. asp.net, basic authentication, file access
      I have a asp.net application that is configured to use "basic authentication". The application needs to have access to delete a file in let's say...
    5. Basic Access Authentication
      I found this article http://www.dotnet247.com/247reference/msgs/22/113795.aspx, but unfortunatly it no longer exists here, so I'm re-opening it. ...
  3. #2

    Default Re: Access Authentication

    You can use Forms based authentication and write your own authentication
    inheriting from the authentication base class.

    --
    Ryan Hanisco
    MCSE, MCDBA
    Flagship Integration Services

    "Shaker" <Shaker@discussions.microsoft.com> wrote in message
    news:8DD0A14E-C0BD-4430-803F-19F49C9D1FFA@microsoft.com...
    > Hi,
    > I have an ASP.Net Application,
    > This application is accessed based on user identiy authorization.
    > This application is hosed on server locted on NT domain (based On AD)
    groups.
    >
    > This application is also accessed from another workgroup (not defined on
    > main NT domain).
    >
    > I could control the access per user when using
    > <authentication mode="Windows"/>
    >
    > and
    > <authorization>
    > <allow users="......./>
    >
    > But this will Deny the other workgroup from seeing the application.
    >
    > How could I provide the access per user level for two differnt domains.
    >
    > Note:
    > The IIS security settings is: Anonmous Access and Integrated Windows Auth.
    >
    >
    > Help
    >
    >
    > --
    > MCSD not .Net yet :(

    Ryan Hanisco Guest

  4. #3

    Default Re: Access Authentication

    But I still need to base my authentication based on Windows, without needing
    to do further authentication Forms.

    "Ryan Hanisco" wrote:
    > You can use Forms based authentication and write your own authentication
    > inheriting from the authentication base class.
    >
    > --
    > Ryan Hanisco
    > MCSE, MCDBA
    > Flagship Integration Services
    >
    > "Shaker" <Shaker@discussions.microsoft.com> wrote in message
    > news:8DD0A14E-C0BD-4430-803F-19F49C9D1FFA@microsoft.com...
    > > Hi,
    > > I have an ASP.Net Application,
    > > This application is accessed based on user identiy authorization.
    > > This application is hosed on server locted on NT domain (based On AD)
    > groups.
    > >
    > > This application is also accessed from another workgroup (not defined on
    > > main NT domain).
    > >
    > > I could control the access per user when using
    > > <authentication mode="Windows"/>
    > >
    > > and
    > > <authorization>
    > > <allow users="......./>
    > >
    > > But this will Deny the other workgroup from seeing the application.
    > >
    > > How could I provide the access per user level for two differnt domains.
    > >
    > > Note:
    > > The IIS security settings is: Anonmous Access and Integrated Windows Auth.
    > >
    > >
    > > Help
    > >
    > >
    > > --
    > > MCSD not .Net yet :(
    >
    >
    >
    Shaker Guest

  5. #4

    Default Re: Access Authentication

    You can tie the form to AD easily... that is a behaviour of the form...

    Otherwise, you'll need to inherit the security authentication and roll your
    own.

    --
    Ryan Hanisco
    MCSE, MCDBA
    Flagship Integration Services

    "Shaker" <Shaker@discussions.microsoft.com> wrote in message
    news:AEB06382-6B48-4CC7-BB23-ACBC523E1595@microsoft.com...
    > But I still need to base my authentication based on Windows, without
    needing
    > to do further authentication Forms.
    >
    > "Ryan Hanisco" wrote:
    >
    > > You can use Forms based authentication and write your own authentication
    > > inheriting from the authentication base class.
    > >
    > > --
    > > Ryan Hanisco
    > > MCSE, MCDBA
    > > Flagship Integration Services
    > >
    > > "Shaker" <Shaker@discussions.microsoft.com> wrote in message
    > > news:8DD0A14E-C0BD-4430-803F-19F49C9D1FFA@microsoft.com...
    > > > Hi,
    > > > I have an ASP.Net Application,
    > > > This application is accessed based on user identiy authorization.
    > > > This application is hosed on server locted on NT domain (based On AD)
    > > groups.
    > > >
    > > > This application is also accessed from another workgroup (not defined
    on
    > > > main NT domain).
    > > >
    > > > I could control the access per user when using
    > > > <authentication mode="Windows"/>
    > > >
    > > > and
    > > > <authorization>
    > > > <allow users="......./>
    > > >
    > > > But this will Deny the other workgroup from seeing the application.
    > > >
    > > > How could I provide the access per user level for two differnt
    domains.
    > > >
    > > > Note:
    > > > The IIS security settings is: Anonmous Access and Integrated Windows
    Auth.
    > > >
    > > >
    > > > Help
    > > >
    > > >
    > > > --
    > > > MCSD not .Net yet :(
    > >
    > >
    > >

    Ryan Hanisco Guest

  6. #5

    Default Re: Access Authentication

    Can you explain more details of how to do, or refere where it is?

    Provided that I don't want to ask the user for more Passwords and ID more
    than the time he did once he logged to the network, either to NT Domain(AD)
    or to Workgroup domain (Not AD).

    "Ryan Hanisco" wrote:
    > You can tie the form to AD easily... that is a behaviour of the form...
    >
    > Otherwise, you'll need to inherit the security authentication and roll your
    > own.
    >
    > --
    > Ryan Hanisco
    > MCSE, MCDBA
    > Flagship Integration Services
    >
    > "Shaker" <Shaker@discussions.microsoft.com> wrote in message
    > news:AEB06382-6B48-4CC7-BB23-ACBC523E1595@microsoft.com...
    > > But I still need to base my authentication based on Windows, without
    > needing
    > > to do further authentication Forms.
    > >
    > > "Ryan Hanisco" wrote:
    > >
    > > > You can use Forms based authentication and write your own authentication
    > > > inheriting from the authentication base class.
    > > >
    > > > --
    > > > Ryan Hanisco
    > > > MCSE, MCDBA
    > > > Flagship Integration Services
    > > >
    > > > "Shaker" <Shaker@discussions.microsoft.com> wrote in message
    > > > news:8DD0A14E-C0BD-4430-803F-19F49C9D1FFA@microsoft.com...
    > > > > Hi,
    > > > > I have an ASP.Net Application,
    > > > > This application is accessed based on user identiy authorization.
    > > > > This application is hosed on server locted on NT domain (based On AD)
    > > > groups.
    > > > >
    > > > > This application is also accessed from another workgroup (not defined
    > on
    > > > > main NT domain).
    > > > >
    > > > > I could control the access per user when using
    > > > > <authentication mode="Windows"/>
    > > > >
    > > > > and
    > > > > <authorization>
    > > > > <allow users="......./>
    > > > >
    > > > > But this will Deny the other workgroup from seeing the application.
    > > > >
    > > > > How could I provide the access per user level for two differnt
    > domains.
    > > > >
    > > > > Note:
    > > > > The IIS security settings is: Anonmous Access and Integrated Windows
    > Auth.
    > > > >
    > > > >
    > > > > Help
    > > > >
    > > > >
    > > > > --
    > > > > MCSD not .Net yet :(
    > > >
    > > >
    > > >
    >
    >
    >
    Shaker 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