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

  1. #1

    Default SSO advice

    We are looking to implement Single Sign On (SSO) for our intranet and other
    internal applications.

    Our plan is to have an ASP.NET “portal page” which will examine the
    WindowsIndentity of the IIS-authenticated user, and present links for the
    applications that the user has authorization.

    In order to minimize custom programming efforts, we would like to leverage
    built in Windows functionality for authorization and authentication as much
    as possible for both the portal and downstream components and applications.

    Our research has led us to the conclusion that using Windows Integrated
    Authentication on IIS is the most effective way to authenticate the user. For
    application authorization, we may use Active Directory Application Mode
    (ADAM) or a custom SQL database.

    However, it would be desirable to force the user to enter their credentials
    upon initial logon, rather than automatically picking up the network logon.
    We are concerned that Basic authentication (with HTTPS) may present
    difficulties if our applications are spread across several machines.

    Anyone have experience/advice on this?

    michaelr Guest

  2. Similar Questions and Discussions

    1. Advice
      Hello All, I am looking for advice on the purchase of a digital camera. I will be using it primarily for personal photos, and to e-mail shots...
    2. Help and Advice
      Hi, I have a dynamic menu in my Intranet application that loads from a database. What I would like to do is to make parent nodes visible based on...
    3. some advice please
      Hallo, I have to make a web application in Javascript/ASP for tenniscourt reservation (based on Access database). I would like to do everything...
    4. A bit of advice!
      Hi guys, im kinda new to this forum stuff, and i was wondering if anyone could help me out. I'm using 3d Studio Max 5 and Director MX for a...
    5. Need advice
      Hi I am in the process of "beautifying" a web site based on PHP + XTemplate. I wish to include a fixed left navigation bar on almost all the pages....
  3. #2

    Default Re: SSO advice

    If the Apps all run in a Domain or same machine just turn off anonymous
    access in IIS.

    --
    Daniel Fisher(lennybacon)
    MCP C# ASP.NET
    Blog: [url]http://www.lennybacon.com/[/url]



    "michaelr" <michaelr@discussions.microsoft.com> wrote in message
    news:341C7177-49C7-4D73-BDDF-5B1367402574@microsoft.com...
    > We are looking to implement Single Sign On (SSO) for our intranet and
    > other
    > internal applications.
    >
    > Our plan is to have an ASP.NET "portal page" which will examine the
    > WindowsIndentity of the IIS-authenticated user, and present links for the
    > applications that the user has authorization.
    >
    > In order to minimize custom programming efforts, we would like to leverage
    > built in Windows functionality for authorization and authentication as
    > much
    > as possible for both the portal and downstream components and
    > applications.
    >
    > Our research has led us to the conclusion that using Windows Integrated
    > Authentication on IIS is the most effective way to authenticate the user.
    > For
    > application authorization, we may use Active Directory Application Mode
    > (ADAM) or a custom SQL database.
    >
    > However, it would be desirable to force the user to enter their
    > credentials
    > upon initial logon, rather than automatically picking up the network
    > logon.
    > We are concerned that Basic authentication (with HTTPS) may present
    > difficulties if our applications are spread across several machines.
    >
    > Anyone have experience/advice on this?
    >

    Daniel Fisher\(lennybacon\) 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