My debug setup is currently using tomcat (6.0) as server in my eclipse.
I am trying to test concurrency check for a long task (about 3mins). So when other session to the servlet tries to do the same process. I noticed while the first session blocks the server. The other session cannot even load other pages.
Is there a setting in tomcat or eclipse that needs to be set for this to work?
Have you tried editing the properties of the breakpoint so that it only pauses its own thread, or written conditions to only stop for the correct request (not that I know exactly what variables you have to work with at that point)?