2 Replies Latest reply on Jun 17, 2003 3:27 AM by frito

    Running in debug mode

    dbronk

      I want to use my java debugger so I added the parms:

      -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000

      to the startup of JBoss 3.0.4. I tried both jdk1.3 and jdk1.4. Once it tries to execute the java command to start JBoss it hangs and gives no other messages.

      What am I doing wrong? I am using Visual Slick Edit as my editor with a built in debugger.

      Thanks,
      Dale

        • 1. Re: Running in debug mode
          prabhakar

          This is what I have been using for debugging:
          -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8787

          -prabhakar

          • 2. Re: Running in debug mode
            frito

            [pre]suspend=y[/pre] means, the vm is waiting for a debug session connecting to the vm.

            If you want to let JBoss run in debug mode and connect to it later on, use [pre]suspend=n[/pre].

            Greetings,
            Frito