How to keep a single user session from having multiple threads?

2004-08-19 Thread Bill Bruns
Hello folks, I have a situation in which 2 threads are being started in the same user session. Now, that in itelf is not necessarily a problem - the problem it that both threads are executing the same JSP pages. This still does not hurt anything as yet,(The JSPs use session variables so that

Re: How to keep a single user session from having multiple threads?

2004-08-19 Thread Justin Ruthenbeck
I'll answer your specific question, but first let me say: In the situation you are describing here, the root problem is not that the same JSP is being run concurrently for a particular session -- it's that your application has been designed such that you care. Mainstream jsp/servlet