Re: Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Mark Slater
On Mar 29, 2006, at 12:47 PM, Pascal Alberty wrote: Add the following parameters to the tomcat JAVA_OPTIONS -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n In Eclipse, create a new "Java Remote Application". By default, port used will be 8000 as configured previously. Laun

Re: Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Mark Thomas
Mark Slater wrote: > I'm using Eclipse to try and debug a servlet in tomcat. I've got > eclipse set up so that it starts and stops tomcat in debug mode (I can > tell because the list of tomcat threads is visible and updated when I'm > using the debug perspective). I added a few breakpoints to m

Re: Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Pascal Alberty
Add the following parameters to the tomcat JAVA_OPTIONS -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n In Eclipse, create a new "Java Remote Application". By default, port used will be 8000 as configured previously. Launch Tomcat, run this "JRA", place breakpoints, use your

Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Mark Slater
I'm using Eclipse to try and debug a servlet in tomcat. I've got eclipse set up so that it starts and stops tomcat in debug mode (I can tell because the list of tomcat threads is visible and updated when I'm using the debug perspective). I added a few breakpoints to my code and triggered th