Fix ReturnUrl When Sharing Forms Authentication with Multiple Web Applications
Also see: Brad Abrams’ pixel8 Interview Podcast posted
Scenario: You have two web applications www.mydomain.com and login.mydomain.com. The login site provides a centralized login application and www contains any number of web applications that should use the auth ticket issued by the login site.
The auth ticket can be setup to be shared across the two 3rd level domains no problem. The problem with this setup is that when the user requests a page on www and gets redirected to login the ReturnUrl query string parameter contains a relative path. As far as I know there are not any extensibility points on the FormsAuthenication or FormsAuthenticationModule classes that you can use to fix this. A quick and dirty fix is to use the EndRequest event in your global.asax like this:
1: protected void Application_EndRequest(object sender, EventArgs e)
2: {
3: string redirectUrl = this.Response.RedirectLocation;
4: if (!string.IsNullOrEmpty(redirectUrl))
5: {
6: this.Response.RedirectLocation = Regex.Replace(redirectUrl, “ReturnUrl=(?’url’.*)”, delegate(Match m)
7: {
8: string url = HttpUtility.UrlDecode(m.Groups[“url”].Value);
Also see: Binding to .NET Frameworks Assemblies
Also see: Determining Whether a File Is an Assembly
Also see: From C# to Java: Part 3
Also see: Tagspace: Social Bookmarking for the Whole Web…from Microsoft
Also see: Natural Sorting in C#
9: Uri u = new Uri(this.Request.Url, url);
10: return string.Format(“ReturnUrl={0}”, HttpUtility.UrlEncode(u.ToString()));
11: }, RegexOptions.Singleline | RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture);
12: }
13: }
The basic idea is to intercept the redirect and process the returnurl query string parameter with a regex. This could also be wrapped up in it’s own HttpModule. It’s kind of cheezy I know but it seems to work.
Also see: Updated Finalization and Hosting
Also see: Eriskay: a Programming Language Based on Game Semantics
Also see: From C# to Java: Part 3
Also see: Eriskay: a Programming Language Based on Game Semantics
Also see: Passing the Community Torch: In Search of a New Chief Executive in Redmond
Also see: Exception Handling in Running a Business
eight=”1″>http://weblogs.asp.net/dfindley/archive/2007/02/06/fix-returnurl-when-sharing-forms-authentication-with-multiple-web-applications.aspx
