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 exp

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

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

Re: Session tracking not working - POSTing FORMs

2001-03-23 Thread David Wall
> 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 same servlet, so it's easy for one request to