Hi Senthilrajan:

As Hermod mentioned in his note, your session problems are caused because 
you have (from your previous note):
HttpSession Session=request.getSession(true);

The "true" means create a new session. So instead use:
HttpSession Session=request.getSession(false);

or just:
HttpSession Session=request.getSession();

and your problem will disappear.

Regards,
Geeta

"Senthilrajan VS" <[EMAIL PROTECTED]> wrote on 08/16/2005 07:54:10 AM:

> Hi all,
> 
> How Jsessionid is passed in the struts application and I don't have 
> any control for that. how to avoid that. In my application I am 
> facing the problem in the session it is creating the new session for
> every request. Is this problem related to Jsessionid?
> 
> 
> Thanks & Regards,
> SenthilRajan VS
> -- 
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
> 

> 
> CONFIDENTIALITY NOTICE:This email is intended solely for the person 
> or entity to which it is addressed and may contain confidential 
> and/or protected health information.  Any duplication, 
> dissemination, action taken in reliance upon, or other use of this 
> information by persons or entities other than the intended recipient
> is prohibited and may violate applicable laws.  If this email has 
> been received in error, please notify the sender and delete the 
> information from your system.  The views expressed in this email are
> those of the sender and may not necessarily represent the views of 
> IntelliCare.

Reply via email to