RE: Is the Local object a given in Struts ?

2001-04-24 Thread Nanduri, Amarnath
I believe Locale Object (or) Local object is stored under a key in session. All you have got to do is create a new Local Object and put it under this key. In this way struts will be easily able to pickup the new locale. Somebody in the mailing list has asked for this before. If you check the

Re: Is the Local object a given in Struts ?

2001-04-24 Thread David Winterfeldt
If a Locale object isn't in scope, the ActionServlet will make one based on Locale.getDefault(). You can change it like this. session.setAttribute(org.apache.struts.action.Action.LOCALE_KEY, new java.util.Locale("fr", "")); David --- Jonathan <[EMAIL PROTECTED]> wrote: > Do we get a Local ob