Re: what on earth is a session

2006-06-15 Thread John Walker
Carl, Which application is giving you the session overflow message? Apache, IIS, etc? Regards, John Walker On 6/15/06, Leon Rosenberg <[EMAIL PROTECTED]> wrote: well it depends a lot on your application. in a specific case concurrent sessions are greater than concurrent users, but if you can

Re: what on earth is a session

2006-06-15 Thread Leon Rosenberg
well it depends a lot on your application. in a specific case concurrent sessions are greater than concurrent users, but if you can drive your webapp stateless, you could have more users than sessions. However, typically each visitor of your site will get a new session, even without logging so, so

Re: what on earth is a session

2006-06-15 Thread Carl Smith
Our app has a session over flow issue and I am trying to find out a correct maximum sessions that the server can live with and the configure it. I was confused when people say concurrent user and concurrent sessions. From your answers it seems all my under sanding were close to be right.

Re: what on earth is a session

2006-06-15 Thread Wendy Smoak
On 6/15/06, Carl Smith <[EMAIL PROTECTED]> wrote: (2)simply put, when you open one browser and visit a website, the server(Websphere for example) creates one session, then if you open another browser in the same computer, the sever will create another session. Is this understanding correct?