tags:

views:

19

answers:

1

please tell me .. how to set up a remote debug in Tc Server(Tomcat) ?

I have (Tc Server, Idea 8, Java 1.6)

Thanks..

+2  A: 

Start the tomcat instance using the $TOMCAT_HOME/bin/catalina.sh script as follows:

./catalina.sh jpda start

Using idea look at the options of the server and search for remote, i don't know exactly i do not have it right now to check.

By the way see tomcat's developing faq for a more complete answer.

Alberto Zaccagni