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 interface to
sue once for a session, and
not in the'header' of every jsp page.
To me there doesnt seem a way to use the request object in this
sessionCreated event ?
I would really appreciate any help!
regards
BEn
import javax.servlet.http.HttpSessionListener;
import javax.servlet.http.HttpSessionEvent;
public void sessionCreated(HttpSessionEvent e) {
...
count users
}
public void sessionDestroyed(HttpSessionEvent e) {
count users
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]