Hi all,
I have seen many questions about debugging servlets and EJBs under Orion
(or other appservers). The open sourced (now ;) NetBeans provides very
nice graphical debugger, which can attach to running JVMs, and is really
nice in debugging EJBs/servlets. It can be downloaded from www.netbeans.org
and Orion could be started with:
java -Xdebug -Xrunjdwp:transport=dt_shmem,server=y,suspend=y -jar orion.jar
After that, you just attach to Orion VM and set breakpoints (class, method,
line, etc) on your beans/servlets - nice & easy :+)
Best regards,
Martin Mavrov