Friday, September 7, 2007

Mule Error: Remote Debugging a Mule Server

The article given in Remote Debugging a Mule Server does not work on some operating systems. You must include each JVM option on a separate line as in the following example.

# uncomment this line to debug remotely, the application will wait for the external debugger to connect
# IMPORTANT: change the wrapper.java.additional. parameter to be the actual consecutive number,
# depending on the number of additional parameters above
wrapper.java.additional.4=-Xdebug
wrapper.java.additional.5=-Xnoagent
wrapper.java.additional.6=-Djava.compiler=NONE
wrapper.java.additional.7=-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005


References:
http://mule.codehaus.org/display/MULE/Remote+Debugging+a+Mule+Server
http://www.mail-archive.com/user@mule.codehaus.org/msg04986.html

1 comment:

Anonymous said...

Thanks!

Spent a lot of time trying to figure this one out with no luck!