souravm wrote: > > As getIds() and getSession() methods of HTTPSessionContext are > deprecated I need to know some work around for them. >
Check out javax.servlet.http.HttpSessionListener. There is an example in the 2.3 spec in section SRV.10.4. You can get the spec from: http://java.sun.com/products/servlet/download.html You can track the active sessions yourself using the listener's sessionCreated() and sessionDestroyed() methods. -- Christopher St. John [EMAIL PROTECTED] DistribuTopia http://www.distributopia.com ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
