RE: jsession id in url

2006-10-05 Thread Wang, Hansen
/to /outbound-rule Hansen -Original Message- From: Paul Benedict [mailto:[EMAIL PROTECTED] On Behalf Of Paul Benedict Sent: Wednesday, October 04, 2006 9:33 PM To: Struts Users Mailing List Subject: Re: jsession id in url If you don't need session management, use the JSP page directive to turn

jsession id in url

2006-10-04 Thread sunil virmani
Hi All, In my application in each request jsessionid is passed both in cookie as well as in url. I have enabled the cookie then why it is appearing in the URL also. Regards, Sunil

Re: jsession id in url

2006-10-04 Thread Ed Griebel
http://www.junlu.com/msg/287317.html As stated in above response to (your) similar question, the first request that is returned will have jsessionid= appended. To get rid of it you can try having the first page of the application be a dummy page that merely redirects to the real page. The

Re: jsession id in url

2006-10-04 Thread Paul Benedict
If you don't need session management, use the JSP page directive to turn off sessions -- at least until the user logs in, if you have that kind of website. The jsessionid is only for a stateful application, so if you don't need sessions, get rid of them. That will solve your problem. Paul Ed