Andrea M. wrote:
I have no problem putting the locale in the session if it wasn't for the fact that each deployed web application has its own session handler, so the locale is not shared between web applications. It this possible?Hi Jan What do you mean with "sharing user chosen locale"? Does your user access thru a common login application? If it's something like that, then you might share your Locale putting it in session Session.setAttribute("myLocale", myLocale);
Then retrieving it in the other applications with (Locale)request.getSession().getAttribute("myLocale);
This usually works pretty well since Session is a serializable object.
Not sure it would work in a clustered environment though
Best regards, Jan Nielsen
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

