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