RE: problem with jsession id

2004-06-18 Thread Andrew Hill
link where the href isnt a url. -Original Message- From: Dhruv Trivedi [mailto:[EMAIL PROTECTED] Sent: Friday, 18 June 2004 19:45 To: Struts Users Mailing List Subject: Re: problem with jsession id Hi Niko and all other guys, is there any way in struts to avoid this URL rewriting. Act

RE: problem with jsession id

2004-06-18 Thread Daniel Perry
There is no need for you to use a taglib to render a link! The easiest solution: Login > -Original Message- > From: Dhruv Trivedi [mailto:[EMAIL PROTECTED] > Sent: 18 June 2004 12:45 > To: Struts Users Mailing List > Subject: Re: problem with jsession id > > > Hi

Re: problem with jsession id

2004-06-18 Thread Dhruv Trivedi
Hi Niko and all other guys, is there any way in struts to avoid this URL rewriting. Actually jsessionid is also appended with the link with which i am submitting the form. have a look on code: Original code is: Login But when i run application(first time): Login How can i get rid of this thi

Re: problem with jsession id

2004-06-18 Thread Nicolas De Loof
On first request, a session is created. Tomcat (or any other servlet container) wan use two mecanism to handle sessions : cookies or URL rewriting (add a ";jsessionid=..."). Preference is for cookies, because it doesn't need to change URLs in pages, but on first request, Tomcat has no way to kn

RE: problem with jsession id

2004-06-18 Thread Daniel Perry
That would be jsp adding the session id. Not really a problem, so do you really need to get rid of it? I think it wont appear on further pages, becuase it will use a session cookie (if i understand correctly, the first time it adds that just in case session cookie doesn't work). You should be ab