Preuss, Jacqueline - ENCOWAY wrote: > Hi, I'm new here! > > > > Generally, I'm new in the topic servlets etc. so I hope I can explain my > problem well. > > > > In our company we work with some web applications running in Internet > Explorer. We want to use Tomcat as servlet engine / webserver. The problem is > the session handling of Tomcat. For the application the user authenticates > with username, password and domain (i.e. windows authentication). The user > can select different items in the application e.g. quotes. Every quote is > opened in a new browser window. If we use Tomcat, all quotes of the user are > saved under the same session, i.e. the session id is always the same. That's > a problem for us, because we need a new session for every single quote. So, > is there a possibility to implement our own session handling for Tomcat. If > yes, how? What would you suggest? Can we use a filter for tomcat the renew or > clear the session?
Sounds a bit screwy, starting with the opening a new window for every item... I'm not really sure where to start, so I'll state outright that implementing your own session management scheme is probably a really bad idea, and a can of worms that you definitely do not want to open if you're new to Servlets. The session id really should be consistent throughout a users visit, that's kind of the point of it - and authentication could be impossible without it (depending on your plan). If you describe exactly what you're doing with the session id that requires it to be different each time maybe we can suggest a better alternative. p > I hope this is the right place to post. Thanks for help. > > > > > Jacqueline Preuß > > > > --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]