Multiple authentication schemes

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

  1. #1

    Default Multiple authentication schemes

    Hi,

    I am currently using a ASP.NET CMS system(umbraco.org) which
    uses forms authentication.
    The forms authentication is used to allow editing of pages etc.
    Now i would like to use another scheme
    (perhaps forms, or webservice) in the some custom controls I am
    creating. The reason I would like to do this is that these controls
    are going to connect to a backend system with another userdatabase.

    So in short terms, how can I use multible authentication schemes in
    an ASP.NET application?


    Regards,

    Rasmus Oudal Edberg
    Rasmus Oudal Edberg Guest

  2. Similar Questions and Discussions

    1. forms authentication over multiple projects
      Here is my scenario: I have an aspx page that is essentially a table of contents to a bunch of other aspx pages. The table of contents page...
    2. Multiple Authentication Modes
      Hi, How can I accomplish multiple authentication modes in one application? I have the following scenario: - A company, X, has some employees...
    3. Authentication and multiple browser session
      Hi, I have discovered what I consider to be an annoyance at best and, in some scenarios, a security flaw. After browsing the news groups, I...
    4. Need to handle multiple types of authentication, need help
      I've got an ASP.NET project that i need to support multiple types of login authentication. I've tried initially to create a login system where you...
    5. Form Authentication in ASP.NET for multiple users
      Hi Can I implement Form Authentication in ASP.NET for different users(Number of different users is not fixed). Regards Vinayak
  3. #2

    Default RE: Multiple authentication schemes

    Hi

    Yes it is possible. We have a system were users can use client certificates
    or username/password to be authenticated. We use forms authentication for
    both. Once we have authenticated the user we create a standard cookie using
    FormsAuthentication.SetAuthCookie and then treat all authenticated users the
    same after that point ie determining permisssions based on the information in
    that cookie.

    Shaun

    "Rasmus Oudal Edberg" wrote:
    > Hi,
    >
    > I am currently using a ASP.NET CMS system(umbraco.org) which
    > uses forms authentication.
    > The forms authentication is used to allow editing of pages etc.
    > Now i would like to use another scheme
    > (perhaps forms, or webservice) in the some custom controls I am
    > creating. The reason I would like to do this is that these controls
    > are going to connect to a backend system with another userdatabase.
    >
    > So in short terms, how can I use multible authentication schemes in
    > an ASP.NET application?
    >
    >
    > Regards,
    >
    > Rasmus Oudal Edberg
    >
    Shaun Wilde 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