Hi,
When i try to start the tomcat server in debug mode, the server does not run at all.
Here is a section from the tomcat.bat that handles the debug mode:
rem --- Start SAP Portals Modification
:debugServer
rem Debugging Tomcat in this window
echo Start tomcat in debug mode
%_STARTJAVA% %TOMCAT_OPTS% -classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=5000,suspend=n,server=y -Dhttp.proxyHost=%_PROXY_HOST% -Dhttp.proxyPort=%_PROXY_PORT% -Dtomcat.home="%TOMCAT_HOME%" %_MAIN% start %2 %3 %4 %5 %6 %7 %8 %9
goto cleanup
rem --- End SAP Portals Modification
As a result of this i cannot debug my application (i'm using eclipse platform).
Any help would be appreciated.