| Author |
How to get Servlet Context ?
|
Siva Ram
Ranch Hand
Joined: Apr 04, 2002
Posts: 66
|
|
Hi, I am using a SessTrack class which implements javax.servlet.http.HttpSessionBindingListener interface for session tracking in the application. The SessTrack is the helper class, in which I have to manipulate servlet context . In Servlet 2.2b API , Is there any way to perform this operation ?
|
Thanks and Regards,<br />Siva Ram .NR
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12321
|
|
The event you get in the listener is a HttpSessionBindingEvent. From that you can get the session HttpSession s = evt.getSession(); from the session you can get the ServletContext sc = s.getServletContext(); its all in the API. What you can't get is the HttpSessionContext, that method is deprecated and returns null since version 2.1 Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: How to get Servlet Context ?
|
|
|