Hello

I am currently using Oracle JDeveloper 3.1

It is also available to download from Oracle Web site.

Bellow is a some "copy and paste" text from Oracle help file.

*****************
Configuring Tomcat for Remote Debugging Java Servlets
If you are using Tomcat, you can debug using either the Oracle Java Virtual
Machine (JVM) debugging protocol or the Sun Java Platform Debugging
Architecture (JPDA). When you start your remote debugging session, you will
have to choose which method to use. Depending on which one you choose, your
configuration options are a little different.

There is a option to debug on local machine or remote one.
*****************


*****************  my changes to tomcat.bat file to use  JPDA ****
rem ****  To use JPDA debugging protocol
:JPDA
PATH=%PATH%;D:\jdk1.3\bin;D:\Program Files\Oracle\JDeveloper
3.1\jpda-1.0\bin
set CLASSPATH=%CLASSPATH%;D:\Program
Files\Oracle\JDeveloper\jswdk-1.0\lib\servlet.jar
set DEBUG_FLAG=-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=4000
-Xdebug -Xnoagent
java %DEBUG_FLAG% %TOMCAT_OPTS% -Dtomcat.home="%TOMCAT_HOME%"
org.apache.tomcat.startup.Tomcat %2 %3 %4 %5 %6 %7 %8 %9
goto cleanup

*****************  my changes to tomcat.bat file to use Oracle JVM ****
rem **** To use Oracle's JVM debugging protocol
:Oracle
PATH=D:\Program Files\Oracle\JDeveloper 3.1\java1.2\jre\bin;%PATH%
rem D:\jdk1.3\bin;D:\Program Files\Oracle\JDeveloper 3.1\jpda-1.0\bin
set CLASSPATH=%CLASSPATH%;D:\Program
Files\Oracle\JDeveloper\jswdk-1.0\lib\servlet.jar
set DEBUG_FLAG=-XXdebugondemandquietport4000
java %DEBUG_FLAG% %TOMCAT_OPTS% -Dtomcat.home="%TOMCAT_HOME%"
org.apache.tomcat.startup.Tomcat %2 %3 %4 %5 %6 %7 %8 %9
goto cleanup
*******************************************

I've tested debuging on my machine ( NT 2000 ) and it works. I've test
remote debugging but on local machine. I don't test on REAL remote machine.


Now, I am using  other modes than recommended by Oracle, much more faster
than debugging whole Tomcat and Turbine.

Oracle JDeveloper has internal servlet machine, and I use it. :)

If someone is interested how to use Oracle internal servlet machine, than I
can send more info.

Best regards 
Grzegorz Czuba

-----Original Message-----
From: christopher baus [mailto:[EMAIL PROTECTED]]
Sent: 2 wrzesnia 2000 01:59
To: Turbine
Subject: RE: state of turbine install

BTW, does anyone have a remote debugger they recommend?  These things are
pricey as hell in most 
IDEs.  If I shell out, I want make sure I'm getting something that works 
well.  I'd like to be able to debug my Linux boxes from NT.


------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to