Reputation: 2138
How do I run jboss 4.2.3 in debug mode?
Upvotes: 0
Views: 6398
Reputation: 38625
Did you try the regular JVM options to enable remote debugging?
set JAVA_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n %JAVA_OPTS%
That the usual way to enable remote debugging.
This page displays how to remote debug various app. server and is fairly recent:
Upvotes: 2