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
: 18 June 2004 12:06 > To: [EMAIL PROTECTED] > Subject: problem with jsession id > > > hello guys, > >when i open the login form of my struts application, for the > very first time a jession id is appended with the value of action > attribute > > example > &

problem with jsession id

2004-06-18 Thread Asim Ghosh
hello guys, when i open the login form of my struts application, for the very first time a jession id is appended with the value of action attribute example above value is shown in the source code of the displayed page. can any one tell me why it happens and how can i solve this probl