Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

single sign on in asp.net

We have developed implemented single sign on methodology to authenticate user.

When a page is requested, if it is not authenticated then a login page will be redirected. Once they logged in the requested page will be shown.

this is working when we don't assign a domain to the virtual directory. But when we assign the domain to virtual directory after the authentication the application is not redirecting to the requested page.

We are using FormsAuthentication.GetRedirectUrl method to redirect the requested page.

Why this is happening? How can we resolve this issue?

like image 212
gopal Avatar asked Jun 03 '10 10:06

gopal


People also ask

What is single sign-on authentication in ASP NET?

What is Single Sign On (SSO)? To access any secured page in a web application, the user needs to authenticate and if the user want to access multiple web applications, then the user has to login for each of those applications individually.

What is single sign-on?

Single sign-on (SSO) is a session and user authentication service that permits a user to use one set of login credentials -- for example, a name and password -- to access multiple applications.


1 Answers

You might want to check Windows Identity Framework too.

Good article here : Windows Identity Foundation features for passive single sign-on and single sign-out

like image 114
Stéphane Avatar answered Oct 12 '22 04:10

Stéphane