Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / C#
Article

Sharing Session Across Applications

Rate me:
Please Sign up or sign in to vote.
3.86/5 (26 votes)
18 Jun 2008CPOL2 min read 285.9K   8.5K   63   76
A simple way to share session data accross web applications.

Introduction

This is intended to be a simple solution to sharing session data across applications. This implementation allows you to use the out of the box session providers that ship with ASP.NET without modifying any stored procedures, or creating custom session store providers.

Background

There was a large project going on at work, part of which involved splitting our one large website into smaller logical areas of functionality. This would provide us with more flexibility and manageability of our products. The only problem was, how would we share session data across applications?

Our current environment uses a SQL session store, so my first suggestion was to simply modify one of the stored procs to give all applications the same name, thus sharing session. That was quickly shot down by coworkers because they felt it would cause a support hole in the case that Microsoft would have to come in to troubleshoot anything related to session data. So, they decided to create custom session store providers. What they ended up doing is essentially creating exact code duplicates of the MS implementations for SQL and State Server session stores, and hacking in a few lines to change the application name (I am not sure how that is any better that changing a stored proc, but that was the decision).

As time came to actually implement this in our applications, I looked over the proof of concept, and found myself unable to actually use all that copied code simply to share session data. I just couldn't believe that there wasn't an easier way to solve this problem.

After spending about an hour searching the Internet, and not finding anything better, I decided to dig into the session manager code using Reflector to see if I could find anything.

Here's what I came up with...

Using the code

This shared session solution I came up with is fairly simple to use. Simply plug in the SharedSessionModule...

In the web.config of each application you would like to share session data for, add the following HTTP module:

XML
<httpModules>
   <add name="SharedSessionModule" type="Femiani.Web.Modules.SharedSessionModule, 
                                         Femiani.Web.Modules.SharedSessionModule"/>
</httpModules>

Then, set your application name:

XML
<appSettings>
    <add key="ApplicationName" value="SharedWeb"/>
</appSettings>

Points of interest

After digging around for a while, I found out where the session stores were getting the application name from. Then, using an HTTP module and some Reflection, I manually set the application name when the web application starts up.

C#
/// <summary>
/// SharedSessionModule class.
/// </summary>
/// <created date="5/31/2008" by="Peter Femiani"/>
public class SharedSessionModule : IHttpModule
{
    #region IHttpModule Members
    /// <summary>
    /// Initializes a module and prepares it to handle requests.
    /// </summary>
    /// <param name="context">An <see cref="T:System.Web.HttpApplication"/>
    /// that provides access to the methods,
    /// properties, and events common to all application objects within an ASP.NET
    /// application</param>
    /// <created date="5/31/2008" by="Peter Femiani"/>
    public void Init(HttpApplication context)
    {
        try
        {
            // Get the app name from config file...
            string appName = ConfigurationManager.AppSettings["ApplicationName"];
            if (!string.IsNullOrEmpty(appName))
            {
                FieldInfo runtimeInfo = typeof(HttpRuntime).GetField("_theRuntime", 
                                        BindingFlags.Static | BindingFlags.NonPublic);
                HttpRuntime theRuntime = (HttpRuntime)runtimeInfo.GetValue(null);
                FieldInfo appNameInfo = typeof(HttpRuntime).GetField("_appDomainAppId", 
                                        BindingFlags.Instance | BindingFlags.NonPublic);
                appNameInfo.SetValue(theRuntime, appName);
            }
        }
        catch (Exception ex)
        {
            Debug.WriteLine(ex);
        }
    }
    /// <summary>
    /// Disposes of the resources (other than memory) used by the module that
    /// implements <see cref="T:System.Web.IHttpModule"/>.
    /// </summary>
    /// <created date="5/31/2008" by="Peter Femiani"/>
    public void Dispose()
    {
    }
    #endregion
}

And that's it! Pretty simple.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect People Media
United States United States
My name is Peter Femiani and I am a graduate of Arizona State University with a B.S. in Economics. I have been writing code since I was about 14.

Comments and Discussions

 
GeneralNo Funciona Pin
Joshue24-Sep-08 7:46
Joshue24-Sep-08 7:46 
GeneralNeed urgent help Pin
mamtamastek24-Sep-08 3:33
mamtamastek24-Sep-08 3:33 
GeneralSharing session between .net 1.1 and 2.0 Pin
wijayae26-Aug-08 23:20
wijayae26-Aug-08 23:20 
Generalsharing session data accross servers Pin
Desayya N21-Aug-08 19:59
Desayya N21-Aug-08 19:59 
GeneralInProc and StateServer Modes Pin
Pavi Sivya20-Aug-08 6:19
Pavi Sivya20-Aug-08 6:19 
GeneralRe: InProc and StateServer Modes Pin
issac@limosys.com22-Jan-10 6:45
issac@limosys.com22-Jan-10 6:45 
GeneralSome issues [modified] Pin
mrcraft114-Aug-08 5:45
mrcraft114-Aug-08 5:45 
GeneralRe: Some issues Pin
frankbret210-Dec-08 10:11
frankbret210-Dec-08 10:11 
GeneralNot working for ASP State Server Pin
EdwinY11-Aug-08 20:32
EdwinY11-Aug-08 20:32 
GeneralRe: Not working for ASP State Server Pin
pfemiani12-Aug-08 5:06
pfemiani12-Aug-08 5:06 
GeneralRe: Not working for ASP State Server Pin
SashiRachakonda29-Feb-12 14:14
SashiRachakonda29-Feb-12 14:14 
GeneralI have an error in my web.config [modified] Pin
Member 24283424-Aug-08 19:48
Member 24283424-Aug-08 19:48 
AnswerRe: I have an error in my web.config Pin
Dutchboy00343-Jan-10 3:02
Dutchboy00343-Jan-10 3:02 
QuestionDoes this work in 2.0 and vb Pin
Asha100917-Jul-08 10:33
Asha100917-Jul-08 10:33 
Question.NET 3.5 only? Pin
SIMONJONES10-Jul-08 6:32
SIMONJONES10-Jul-08 6:32 
AnswerRe: .NET 3.5 only? Pin
pfemiani16-Jul-08 8:10
pfemiani16-Jul-08 8:10 
GeneralRe: .NET 3.5 only? Pin
sagitario348-Aug-08 4:20
sagitario348-Aug-08 4:20 
GeneralRe: .NET 3.5 only? Pin
EdwinY5-Apr-09 21:57
EdwinY5-Apr-09 21:57 
AnswerRe: .NET 3.5 only? Pin
EdwinY11-Aug-08 20:13
EdwinY11-Aug-08 20:13 
GeneralRe: .NET 3.5 only? Pin
Suresh SD10-Sep-08 3:02
Suresh SD10-Sep-08 3:02 
GeneralQuestions Pin
Paulo Morgado24-Jun-08 5:54
professionalPaulo Morgado24-Jun-08 5:54 
GeneralRe: Questions Pin
pfemiani24-Jun-08 6:15
pfemiani24-Jun-08 6:15 
GeneralRe: Questions Pin
Paulo Morgado24-Jun-08 11:55
professionalPaulo Morgado24-Jun-08 11:55 
GeneralFile Corrupted Pin
Sergio Luix19-Jun-08 7:35
Sergio Luix19-Jun-08 7:35 
GeneralRe: File Corrupted Pin
pfemiani19-Jun-08 9:21
pfemiani19-Jun-08 9:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.