开发者

single sign on in asp.net

开发者 https://www.devze.com 2023-01-01 21:06 出处:网络
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 requ

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 wh开发者_StackOverflow中文版en 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?


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


First add defaulturl to your web.config and see if page can redirect to defaulturl after authentication

<authentication mode="Forms"> 
        <forms loginUrl = "login.aspx" defaultUrl="default.aspx" />
</authentication>

If defaulturl works then you have to check ReturnUrl parameter in your login page address

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号