Re: Session tracking not working - POSTing FORMs

2001-03-24 Thread David Crooke
David Crooke wrote: Use an encoded URL for the ACTION parameter of the FORM tag. Side note - with JServ this works for POSTed forms, but wouldn't work with forms using the GET method, since JServ used a querystring argument for its rewriting David Wall wrote: The most likely

Re: Session tracking not working - POSTing FORMs

2001-03-23 Thread Craig R. McClanahan
On Fri, 23 Mar 2001, David Wall wrote: The most likely explanation is that you are using instance variables in your servlets, instead of local variables, to represent the information for a particular request. These variables are shared across all of the simultaneous requests to the

Re: Session tracking not working - POSTing FORMs

2001-03-23 Thread David Crooke
Use an encoded URL for the ACTION parameter of the FORM tag. David Wall wrote: The most likely explanation is that you are using instance variables in your servlets, instead of local variables, to represent the information for a particular request. These variables are shared across all

Session tracking not working

2001-03-23 Thread Neil Aggarwal
Hello: I have tried tomcat 3.2.1 and 3.2.2 (4.0 bombed so I could not try it) and I am getting this problem: I am creating a member-based site. Each tiem a member logs in, I create a User object for them and store it as a session attribute. Each page (In its header) checks for the presence of

Re: Session tracking not working

2001-03-23 Thread Craig R. McClanahan
On Fri, 23 Mar 2001, Neil Aggarwal wrote: Hello: I have tried tomcat 3.2.1 and 3.2.2 (4.0 bombed so I could not try it) and I am getting this problem: I am creating a member-based site. Each tiem a member logs in, I create a User object for them and store it as a session attribute.