Using request.getLocale() inside of the sessionListener event

2004-09-24 Thread Ben Bookey
Dear List, We are using a sessionlistener to count users. Is it possible for us to use the request object somehow inside of the sessionCreated event? We want to determine the client.locale and then store this in the session object. This would therefore mean, we can determine the language GUI

Re: Using request.getLocale() inside of the sessionListener event

2004-09-24 Thread Tim Funk
No. The request is not accessible inside the sessionevent. What you probably need to do is write a filter that sets that value in the session (if a session exists). -Tim Ben Bookey wrote: Dear List, We are using a sessionlistener to count users. Is it possible for us to use the request object