I have been looking at solutions for sharing session data between mutliple war files. I came across the following solution http://www.fwd.at/tomcat/sharing-session-data-howto.html

The basic idea of it is that if you have more than one war file, you can set a cookie using the sessionid of the first context that is used.

The cookie can be set using a path that will apply to all contexts/applications.

For example, if i have the following configuration for 3 applicatons

/myapp/app1
/myapp/app2
/myapp/app3

I can set a cookie as follows

/myapp sessionid.

The sessionid cookie will then be sent to any request with /myapp in the address. This allows the session id to then be used by any of the contexts.

The only problem with this approach is that it was written in 2003 and tested on Tomcat 4.

What are your opinions of this approach? Is there a better way of doing it?

Thanks

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

That article is indeed heavily outdated.

On Tomcat 5.5 and 6.0 you can just set emptySessionPath attribute to true in the <Connector> element in /conf/server.xml.

<Connector ... emptySessionPath="true">

On Tomcat 7.0 this has changed because this is now configureable from the Servlet 3.0 API on. It's then on Tomcat's side configureable by setting sessionCookiePath to / in <Context> element in any responsible context.xml file.

<Context ... sessionCookiePath="/">

As said, there's a new Servlet 3.0 API which allows you to configure the session cookie through the standard API. You can do it by either declaratively by adding the following to the web.xml:

<session-config>
    <cookie-config>
        <path>/</path>
    </cookie-config>
</session-config>

or programmatically by SessionCookieConfig which is available by ServletContext#getSessionCookieConfig().

getServletContext().getSessionCookieConfig().setPath("/");

You could do this in ServletContextListener#contextInitialized() or HttpServlet#init().

See also:

link|improve this answer
This is very useful information. I dont quite understand how most of it works but at least it gives me a pointer to where and what to investigate further. Are there any examples anywhere of how these are used? I am using Tomcat 6.0 – ziggy Feb 25 at 12:38
The /conf/server.xml is in Tomcat's installation folder. Just open the XML file in a text/xml editor, locate the <Connector> element which is been used to serve your webapps and add emptySessionPath="true" attribute to the element. – BalusC Feb 25 at 12:43
If i set emptySessionPath to true, do all applications get the same jsessionid or do they still get different jsessionids? Thanks – ziggy Feb 25 at 12:49
feedback

To my knowledge there is no direct way to do this, you can however use a domain level cookie if these contexts share the same domain.

You can either put the data in the cookie (I don't recommend that).

Or put a secured session Id that you can use to access some form of storage (DB or distributed cache etc) to retrieve the data you need.

link|improve this answer
I forgot to mention, the context all run within the same Tomcat instance. – ziggy Feb 24 at 19:26
I don't think it makes any difference, but I could very much be wrong. – MahdeTo Feb 24 at 19:27
The other option i guess is to set the cookie path to "/" – ziggy Feb 24 at 19:37
That is what I meant by setting it to the Domain. I think its the only option here. – MahdeTo Feb 24 at 19:43
feedback

If the amount of data is not astronomical and the data itself isn't changing too rapidly, you might want to consider using JNDI. This solution was designed exactly for what you are looking for.

You can have a look at official documentation or this post to tomcat-user mailing list for references & examples.

link|improve this answer
could you point me to an example of how this can be achieved. Thanks – ziggy Feb 25 at 12:34
Updated the answer. – mindas Feb 25 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.