Re: How to get ACCESS to Locale in TAG class

2005-11-04 Thread Hubert Rabago
Is your JSP being accessed directly? If so, you may need to let the Struts RequestProcessor do its work first. then access it the way you would other Struts actions: http://domain/myApp/myPage.do Hubert On 11/4/05, Łukasz Piątkowski <[EMAIL PROTECTED]> wrote: > Hello ! > > I have a proble

How to get ACCESS to Locale in TAG class

2005-11-04 Thread Łukasz Piątkowski
Hello ! I have a problem with accessing LOCALE in my TAG class. When I want to get LOCALE in my ACTION class I use : request.getSession().getAttribute(Globals.LOCALE_KEY) - and it works fine in my TAG class I use : pageContext.getSession().getAttribute(Globals.LOCALE_KEY) - it is null Th