RE: Remote debugging with tomcat windows

2005-03-07 Thread Ramu, Vinod
Hi, This could be because Tomcat uses other -D option, which I am not exactly sure of (refer the doc). Besides, you need jdk 1.5XXX and you have to start the server from the TOMCAT_HOME directory. Also try to set the suspend=n option to suspend=y this will make the debuggee to wait till the

RE: Remote debugging with tomcat windows

2005-03-07 Thread Randy Paries
; Will Norris Subject: RE: Remote debugging with tomcat windows Hi, This could be because Tomcat uses other -D option, which I am not exactly sure of (refer the doc). Besides, you need jdk 1.5XXX and you have to start the server from the TOMCAT_HOME directory. Also try to set the suspend=n option

RE: Remote debugging with tomcat windows

2005-03-07 Thread Caldarale, Charles R
From: Randy Paries [mailto:[EMAIL PROTECTED] Subject: RE: Remote debugging with tomcat windows If I only do -Xdebug I still get the error messages Have you tried running it from the command line rather than as a service? Is 1.5 a requirement for windoze??? No; have no idea why anyone

RE: Remote debugging with tomcat windows

2005-03-07 Thread Ramu, Vinod
that the server needs. Vinod From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Mon 3/7/2005 5:25 PM To: Tomcat Users List Subject: RE: Remote debugging with tomcat windows From: Randy Paries [mailto:[EMAIL PROTECTED] Subject: RE: Remote debugging

RE: Remote debugging a web app with Eclipse?

2004-11-14 Thread George Sexton
Here is a wrapper that I use to start tomcat for remote debugging with Eclipse. Note that the indented CATALINA_OPTS is actually one long line in the batch file. REM @ECHO OFF SET CATALINA_VER=5.0.28 SET CATALINA_BASE=M:\cdaily SET CATALINA_HOME=C:\SERVLET\Jakarta-Tomcat-%CATALINA_VER% SET

Re: Remote debugging a web app with Eclipse?

2004-11-14 Thread Michael Schuerig
On Sunday 14 November 2004 17:16, George Sexton wrote: Here is a wrapper that I use to start tomcat for remote debugging with Eclipse. Note that the indented CATALINA_OPTS is actually one long line in the batch file. Thanks! that was easier than I expected. I'm starting Tomcat from an ant

RE: remote debugging

2004-01-11 Thread Mark Thomas
I do this with Eclipse all the time. The steps to reproduce my configuration are shown below. 1. Configure the following environment variables: JPDA_ADDRESS=8999 JPDA_TRANSPORT=dt_socket 2. Start tomcat from the command line with: catalina jpda start or catalina jpda run 3. In Eclipse configure

RE: remote debugging

2004-01-10 Thread Mark Thomas
Resending from the right account... I do this with Eclipse all the time. The steps to reproduce my configuration are shown below. 1. Configure the following environment variables: JPDA_ADDRESS=8999 JPDA_TRANSPORT=dt_socket 2. Start tomcat from the command line with: catalina jpda start or

Re: Remote debugging on linux for TOMCAT 4.1.24

2003-07-15 Thread Larry Meadors
I use './catalana.sh jpda run' fron the $CATALINA_HOME/bin directory. Larry [EMAIL PROTECTED] 07/15/03 8:20 AM The documentation states add SET CATALINA_OPTS=-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000 to catalina.bat. Does

Re: Remote debugging on linux for TOMCAT 4.1.24

2003-07-15 Thread Norris Shelton
This works if you want to use the defaults. I usually connect via a socket via IntelliJ for remote debugging. I run on windows and have a startup_debug.bat file with the following contents: set JPDA_TRANSPORT=dt_socket set JPDA_ADDRESS=5005 call catalina.bat jpda start --- Larry Meadors

RE: Remote debugging throught network

2003-03-07 Thread Wendy Smoak
My Linux´s Tomcat is running with remote debugging using this parameters: JAVA_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n The problems is, i don´t known how to reach this VM from my own machine, how i could do that? What debugger are you using and

RE: Remote debugging throught network

2003-03-07 Thread Karr, David
Any JPDA-compliant debugger can do this. NetBeans is one example. You simply specify the Attach to remote server option (different debuggers will name this differently), and specify the host where your JVM is running on, dt_socket connections, and the address. You'll probably want to have

Re: Remote debugging throught network

2003-03-07 Thread pcampaigne
: Remote debugging throught network Any JPDA-compliant debugger can do this. NetBeans is one example. You simply specify the Attach to remote server option (different debuggers will name this differently), and specify the host where your JVM is running on, dt_socket connections, and the address

Re: Remote debugging throught network

2003-03-07 Thread Mark
If you don't have an IDE with built in JPDA debugger, a nice (free) standalone one is JSwat: http://www.bluemarsh.com/java/jswat/ At 3/7/2003 10:54 AM, you wrote: Hello folks, i´m trying to debug my application in a special machine throught network, that machine is a Linux with

RE: Remote debugging throught network

2003-03-07 Thread Edson Alves Pereira
: Friday, March 07, 2003 8:31 AM Subject: RE: Remote debugging throught network Any JPDA-compliant debugger can do this. NetBeans is one example. You simply specify the Attach to remote server option (different debuggers will name this differently), and specify the host where your JVM is running