Ask a Question related to ASP.NET Security, Design and Development.
-
Rasmus Oudal Edberg #1
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
-
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... -
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... -
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... -
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... -
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 -
Shaun Wilde #2
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



Reply With Quote

