Does anyone know the steps to configure remote debugging in Tomcat 6 for GWT applications?
IDE - Eclipse
Sever - Tomcat6
Tech - GWT
I have gone through the following link, but it was not clear for me.
http://wiki.apache.org/tomcat/FAQ/Developing
I have done the following things:
- Placed the project war in 'Catalina_Home/webapps/project' which I wanted to debug remotely.
Opened tomcat6w.exe and pasted java option under java tab as follows:
-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
Clicked on start. After starting the server, I have opened eclipse the configure the remote debugging with port 8000 and click on Debug.
- I have got the error message back saying that
Failed to connect to remote VM. Connection refused
.
Is there anything else that I am missing here. Please correct me if I am wrong any where.