Re: session context problem

2000-12-19 Thread Geeta Ramani
Mark: This is perhaps only a partial answer (if at all!), but do you have a Request object available? Because in that case, there are several methods (like getRequestedSessionId) you could apply to answer your qustion. Geeta Mark Mynatt wrote: > According to SUN, HttpSessionContext is deprecat

Re: session context problem

2000-12-19 Thread Mark Mynatt
According to SUN, HttpSessionContext is deprecated. All of my research shows there is no other class available. SUN has deprecated this class for security reason. You could write all sessions to a database, BUT, how do you know when a session is no longer valid? Mark Mynatt [EMAIL PROTECTED]

Re: session context problem

2000-12-19 Thread Rajesh Khazanchi
hi gokul , i think this should solve the problem HttpSession session=req.getSession(true); regards Rajesh - Original Message - From: Gokul Singh <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 19, 2000 3:53 AM Subject: Re: session context problem &g

Re: session context problem

2000-12-19 Thread Vijaylakshmi S
Try this- HttpSession session=req.getSession(true); Vijaylakshmi S Senior Software Engineer IT Solutions (I) Pvt. Ltd., Chennai SSM Technologies <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sent by: "A mailing cc:

Re: session context problem

2000-12-19 Thread Gokul Singh
from the api docs for HttpSessionContext ver 2.2 getIds public java.util.Enumeration getIds() Deprecated. As of Java Servlet API 2.1 with no replacement. This method must return an empty Enumeration and will be removed in a future version of this API. Gokul - Original Message - From: "