Author Topic: [SOLVED] Debugging GWT Project  (Read 3031 times)

RaffoPazzo

  • Community Member
  • Posts: 77
  • Hero Points: 2
[SOLVED] Debugging GWT Project
« on: December 30, 2011, 04:50:19 PM »
I'm just starting using SE for GWT projects.
While following the GWT Getting Started guide I reach the section about debugging. The section talks mainly about debugging in Eclipse. It simply states to switch to debugging mode and active any breakpoints, that's all.

Does SE supports GWT debugging much the same way or any way at least or nothing at all?

Thanks.
Raffaele.
« Last Edit: December 30, 2011, 05:36:09 PM by RaffoPazzo »

RaffoPazzo

  • Community Member
  • Posts: 77
  • Hero Points: 2
Re: Debugging GWT Project
« Reply #1 on: December 30, 2011, 05:35:43 PM »
Fixed!
The Ant build.xml has the "debug" target that open the JVM debugging socket on port 8000.
So it was simply
Code: [Select]
$> ant debugAnd ask SE to attach the debugger to a JVM on port 8000.

RaffoPazzo

  • Community Member
  • Posts: 77
  • Hero Points: 2
Re: [SOLVED] Debugging GWT Project
« Reply #2 on: December 30, 2011, 05:57:48 PM »
Even better, when the project has been created from SE then it knows how to start debugging. Just simply click on "Debug" from the "Build" menu...  ::)