Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-12 Thread Juan Pablo Gardella
Did you check if that solves the problem of variable names?

On Tue, Dec 12, 2023 at 12:50 PM Colin Alworth 
wrote:

> That's great news! Related, I had understood that this didn't work at all,
> but I discovered via
> https://bugs.chromium.org/p/chromium/issues/detail?id=327092 that there
> is an "experimental" feature in chrome that lets locals be displayed.
> [image: screenshot867.png]
> However even with this enabled, only locals/params will show up with their
> correct names - any fields on those, or fields on "this" will still require
> finding their obfuscated names.
>
> On Tuesday, December 12, 2023 at 9:47:40 AM UTC-6 Thomas Broyer wrote:
>
>> On Tuesday, December 12, 2023 at 3:44:34 PM UTC+1 gardella...@gmail.com
>> wrote:
>>
>> Which limitation are you referring to? Is it something that can be fixed
>> or is it impossible to fix variable names there?
>>
>>
>>
>> https://ecma-international.org/news/ecma-tc39-ecmascript-initiates-a-new-task-group-to-standardize-source-maps/
>> > The group’s plan is to identify the gaps, bring completeness and
>> clarity to the current specification; and help source map debuggers,
>> generators and tools to adhere to the updated specification. The intent is
>> to work together on *adding long requested features such as passing
>> through function and variable names*, and debug IDs to quickly identify
>> source files or scope information.
>>
>> (emphasis mine)
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/a876be26-063e-4466-a5c5-5f5760293733n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CA%2BkiFseJx0yP%3DTLan5Nchq0b-1VXw49Zux75jjQCj%3DrWkSEmXg%40mail.gmail.com.


Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-12 Thread Colin Alworth
That's great news! Related, I had understood that this didn't work at all, 
but I discovered via 
https://bugs.chromium.org/p/chromium/issues/detail?id=327092 that there is 
an "experimental" feature in chrome that lets locals be displayed.
[image: screenshot867.png]
However even with this enabled, only locals/params will show up with their 
correct names - any fields on those, or fields on "this" will still require 
finding their obfuscated names.

On Tuesday, December 12, 2023 at 9:47:40 AM UTC-6 Thomas Broyer wrote:

> On Tuesday, December 12, 2023 at 3:44:34 PM UTC+1 gardella...@gmail.com 
> wrote:
>
> Which limitation are you referring to? Is it something that can be fixed 
> or is it impossible to fix variable names there?
>
>
>
> https://ecma-international.org/news/ecma-tc39-ecmascript-initiates-a-new-task-group-to-standardize-source-maps/
> > The group’s plan is to identify the gaps, bring completeness and clarity 
> to the current specification; and help source map debuggers, generators and 
> tools to adhere to the updated specification. The intent is to work 
> together on *adding long requested features such as passing through 
> function and variable names*, and debug IDs to quickly identify source 
> files or scope information. 
>
> (emphasis mine)
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/a876be26-063e-4466-a5c5-5f5760293733n%40googlegroups.com.


Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-12 Thread Thomas Broyer


On Tuesday, December 12, 2023 at 3:44:34 PM UTC+1 gardella...@gmail.com 
wrote:

Which limitation are you referring to? Is it something that can be fixed or 
is it impossible to fix variable names there?


https://ecma-international.org/news/ecma-tc39-ecmascript-initiates-a-new-task-group-to-standardize-source-maps/
> The group’s plan is to identify the gaps, bring completeness and clarity 
to the current specification; and help source map debuggers, generators and 
tools to adhere to the updated specification. The intent is to work 
together on *adding long requested features such as passing through 
function and variable names*, and debug IDs to quickly identify source 
files or scope information. 

(emphasis mine)

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/0c569b18-e95c-40d0-ba81-8fd924b9f358n%40googlegroups.com.


Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-12 Thread Juan Pablo Gardella
Which limitation are you referring to? Is it something that can be fixed or
is it impossible to fix variable names there?

On Tue, Dec 12, 2023 at 11:39 AM Colin Alworth 
wrote:

> The gwt-eclipse-plugin is maintained, but browsers removed the API that
> was previously used to let a Java debugger connect to a running GWT
> application. This API was used by a browser plugin that was shipped as part
> of GWT. Technically GWT still supports this, but I believe only IE11 (and
> htmlunit) can actually use it, and its use is discouraged, some other GWT
> features will not work with it.
>
> There is a separate plugin, https://sdbg.github.io/ that is also
> maintained, that allows eclipse to debug GWT apps via sourcemaps, much the
> same as the browser's own debugger will do.
>
> The issues you're observing with variable renaming making it difficult to
> inspect values is caused by limitations in JS sourcemaps themselves.
>
> On Tuesday, December 12, 2023 at 12:26:16 AM UTC-6 ralph.f...@gmail.com
> wrote:
>
>> Yes, unfortunately the Eclipse plug-in is no longer maintained. Debugging
>> in the browser is the way to go! It works the same as for other JavaScript
>> frameworks (e.g. Angular) using a standard feature to map generated
>> JavaScript onto the source code (be it Java or Typescript etc.). That is,
>> you can set breakpoints and inspect the runtime values of your variables.
>> There is just one issue with variable names which differ between Java and
>> JavaScript but this is mostly cosmetic.
>>
>> Marco Tenti (IoProgrammo88)  schrieb am Mo. 11. Dez.
>> 2023 um 13:31:
>>
>>> So this debug mode is deprecated
>>> https://www.gwtproject.org/doc/latest/tutorial/debug.html  ?
>>>
>>> When I launch the "gwt:codeServer" command, i  go to the sources panel
>>> of the browser chrome, and I can browse the code and set the breakpoints ,
>>> but I can not "see" the runtime values of the variables as it happens with
>>> standard javascript is this correct ?
>>>
>>>  [image: ErrorPskCallStack.png]
>>>
>>> Il giorno lunedì 4 dicembre 2023 alle 13:30:37 UTC+1 Ralph Fiergolla ha
>>> scritto:
>>>
 If I am not mistaken, you are mixing up things a little: the issue you
 were looking at here
 https://github.com/tbroyer/gwt-maven-plugin/issues/82 is not about
 debugging the generated client part of your application, but about the
 compiler that is actually generating the code you want to debug.

 To avoid wasting your time trying to set up the Eclipse Plugin I would
 suggest using your browser's built-in development tools (Ctrl+Shift+I). You
 will see your JAVA source code and can put your breakpoints etc. and step
 through your code. This works in Chrome, Firefox, Edge.

 Bon courage
 Ralph

 On Mon, Dec 4, 2023 at 1:16 PM Marco Tenti (IoProgrammo88) <
 tenti...@gmail.com> wrote:

> Hello everyone, I am updating some old gwt projects and I started to
> study about 15 days ago the gwt framework, this is to specify that I don't
> know all the secrets of the framework yet.
>
> Following Nalu's approach and starting from his example at
> https://github.com/NaluKit/nalu-examples/tree/main/nalu-simple-app-example,
> I was able to start with the gwt:codeserver both client and server part of
> my projects successfully.
>
> Unfortunately, I still haven't figured out what I need to do to
> enablethe  debugging on the client part of the project on the IDE eclipse.
>
> I've read in this issue
> https://github.com/tbroyer/gwt-maven-plugin/issues/82 a possible
> solution, but it doesn't seem to work, I'm 100% sure I'm doing something
> wrong myself., can anyone tell me looking at Nalu's example what 
> additional
> commands I need to set to configure to debugging on the client java code 
> in
> the eclipse ide ?
>
> --
> You received this message because you are subscribed to the Google
> Groups "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to google-web-tool...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/3369c8a1-d86f-40de-9816-d35d865a1e4en%40googlegroups.com
> 
> .
>
 --
>>> You received this message because you are subscribed to the Google
>>> Groups "GWT Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-web-tool...@googlegroups.com.
>>>
>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-web-toolkit/ed37a5ea-c5fa-4a74-9c37-3839311f410en%40googlegroups.com
>>> 

Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-12 Thread Colin Alworth
The gwt-eclipse-plugin is maintained, but browsers removed the API that was 
previously used to let a Java debugger connect to a running GWT 
application. This API was used by a browser plugin that was shipped as part 
of GWT. Technically GWT still supports this, but I believe only IE11 (and 
htmlunit) can actually use it, and its use is discouraged, some other GWT 
features will not work with it.

There is a separate plugin, https://sdbg.github.io/ that is also 
maintained, that allows eclipse to debug GWT apps via sourcemaps, much the 
same as the browser's own debugger will do.

The issues you're observing with variable renaming making it difficult to 
inspect values is caused by limitations in JS sourcemaps themselves.

On Tuesday, December 12, 2023 at 12:26:16 AM UTC-6 ralph.f...@gmail.com 
wrote:

> Yes, unfortunately the Eclipse plug-in is no longer maintained. Debugging 
> in the browser is the way to go! It works the same as for other JavaScript 
> frameworks (e.g. Angular) using a standard feature to map generated 
> JavaScript onto the source code (be it Java or Typescript etc.). That is, 
> you can set breakpoints and inspect the runtime values of your variables. 
> There is just one issue with variable names which differ between Java and 
> JavaScript but this is mostly cosmetic.
>
> Marco Tenti (IoProgrammo88)  schrieb am Mo. 11. Dez. 
> 2023 um 13:31:
>
>> So this debug mode is deprecated  
>> https://www.gwtproject.org/doc/latest/tutorial/debug.html  ? 
>>
>> When I launch the "gwt:codeServer" command, i  go to the sources panel of 
>> the browser chrome, and I can browse the code and set the breakpoints , but 
>> I can not "see" the runtime values of the variables as it happens with 
>> standard javascript is this correct ?
>>
>>  [image: ErrorPskCallStack.png]
>>
>> Il giorno lunedì 4 dicembre 2023 alle 13:30:37 UTC+1 Ralph Fiergolla ha 
>> scritto:
>>
>>> If I am not mistaken, you are mixing up things a little: the issue you 
>>> were looking at here 
>>> https://github.com/tbroyer/gwt-maven-plugin/issues/82 is not about 
>>> debugging the generated client part of your application, but about the 
>>> compiler that is actually generating the code you want to debug. 
>>>
>>> To avoid wasting your time trying to set up the Eclipse Plugin I would 
>>> suggest using your browser's built-in development tools (Ctrl+Shift+I). You 
>>> will see your JAVA source code and can put your breakpoints etc. and step 
>>> through your code. This works in Chrome, Firefox, Edge.
>>>
>>> Bon courage
>>> Ralph
>>>
>>> On Mon, Dec 4, 2023 at 1:16 PM Marco Tenti (IoProgrammo88) <
>>> tenti...@gmail.com> wrote:
>>>
 Hello everyone, I am updating some old gwt projects and I started to 
 study about 15 days ago the gwt framework, this is to specify that I don't 
 know all the secrets of the framework yet.

 Following Nalu's approach and starting from his example at 
 https://github.com/NaluKit/nalu-examples/tree/main/nalu-simple-app-example,
  
 I was able to start with the gwt:codeserver both client and server part of 
 my projects successfully.

 Unfortunately, I still haven't figured out what I need to do to 
 enablethe  debugging on the client part of the project on the IDE eclipse.

 I've read in this issue 
 https://github.com/tbroyer/gwt-maven-plugin/issues/82 a possible 
 solution, but it doesn't seem to work, I'm 100% sure I'm doing something 
 wrong myself., can anyone tell me looking at Nalu's example what 
 additional 
 commands I need to set to configure to debugging on the client java code 
 in 
 the eclipse ide ?

 -- 
 You received this message because you are subscribed to the Google 
 Groups "GWT Users" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to google-web-tool...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-web-toolkit/3369c8a1-d86f-40de-9816-d35d865a1e4en%40googlegroups.com
  
 
 .

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-tool...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/ed37a5ea-c5fa-4a74-9c37-3839311f410en%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 

Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-11 Thread Ralph Fiergolla
Yes, unfortunately the Eclipse plug-in is no longer maintained. Debugging
in the browser is the way to go! It works the same as for other JavaScript
frameworks (e.g. Angular) using a standard feature to map generated
JavaScript onto the source code (be it Java or Typescript etc.). That is,
you can set breakpoints and inspect the runtime values of your variables.
There is just one issue with variable names which differ between Java and
JavaScript but this is mostly cosmetic.

Marco Tenti (IoProgrammo88)  schrieb am Mo. 11. Dez.
2023 um 13:31:

> So this debug mode is deprecated
> https://www.gwtproject.org/doc/latest/tutorial/debug.html  ?
>
> When I launch the "gwt:codeServer" command, i  go to the sources panel of
> the browser chrome, and I can browse the code and set the breakpoints , but
> I can not "see" the runtime values of the variables as it happens with
> standard javascript is this correct ?
>
>  [image: ErrorPskCallStack.png]
>
> Il giorno lunedì 4 dicembre 2023 alle 13:30:37 UTC+1 Ralph Fiergolla ha
> scritto:
>
>> If I am not mistaken, you are mixing up things a little: the issue you
>> were looking at here
>> https://github.com/tbroyer/gwt-maven-plugin/issues/82 is not about
>> debugging the generated client part of your application, but about the
>> compiler that is actually generating the code you want to debug.
>>
>> To avoid wasting your time trying to set up the Eclipse Plugin I would
>> suggest using your browser's built-in development tools (Ctrl+Shift+I). You
>> will see your JAVA source code and can put your breakpoints etc. and step
>> through your code. This works in Chrome, Firefox, Edge.
>>
>> Bon courage
>> Ralph
>>
>> On Mon, Dec 4, 2023 at 1:16 PM Marco Tenti (IoProgrammo88) <
>> tenti...@gmail.com> wrote:
>>
>>> Hello everyone, I am updating some old gwt projects and I started to
>>> study about 15 days ago the gwt framework, this is to specify that I don't
>>> know all the secrets of the framework yet.
>>>
>>> Following Nalu's approach and starting from his example at
>>> https://github.com/NaluKit/nalu-examples/tree/main/nalu-simple-app-example,
>>> I was able to start with the gwt:codeserver both client and server part of
>>> my projects successfully.
>>>
>>> Unfortunately, I still haven't figured out what I need to do to
>>> enablethe  debugging on the client part of the project on the IDE eclipse.
>>>
>>> I've read in this issue
>>> https://github.com/tbroyer/gwt-maven-plugin/issues/82 a possible
>>> solution, but it doesn't seem to work, I'm 100% sure I'm doing something
>>> wrong myself., can anyone tell me looking at Nalu's example what additional
>>> commands I need to set to configure to debugging on the client java code in
>>> the eclipse ide ?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GWT Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-web-tool...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-web-toolkit/3369c8a1-d86f-40de-9816-d35d865a1e4en%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/ed37a5ea-c5fa-4a74-9c37-3839311f410en%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CACwwWxMFQOg2pXm7W%3DZV1tHo2JJ7XEWV8VoovzqAb221YDBQ0w%40mail.gmail.com.


Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-11 Thread Marco Tenti (IoProgrammo88)
So this debug mode is deprecated  
https://www.gwtproject.org/doc/latest/tutorial/debug.html  ? 

When I launch the "gwt:codeServer" command, i  go to the sources panel of 
the browser chrome, and I can browse the code and set the breakpoints , but 
I can not "see" the runtime values of the variables as it happens with 
standard javascript is this correct ?

 [image: ErrorPskCallStack.png]

Il giorno lunedì 4 dicembre 2023 alle 13:30:37 UTC+1 Ralph Fiergolla ha 
scritto:

> If I am not mistaken, you are mixing up things a little: the issue you 
> were looking at here https://github.com/tbroyer/gwt-maven-plugin/issues/82 
> is not about debugging the generated client part of your application, but 
> about the compiler that is actually generating the code you want to debug. 
>
> To avoid wasting your time trying to set up the Eclipse Plugin I would 
> suggest using your browser's built-in development tools (Ctrl+Shift+I). You 
> will see your JAVA source code and can put your breakpoints etc. and step 
> through your code. This works in Chrome, Firefox, Edge.
>
> Bon courage
> Ralph
>
> On Mon, Dec 4, 2023 at 1:16 PM Marco Tenti (IoProgrammo88) <
> tenti...@gmail.com> wrote:
>
>> Hello everyone, I am updating some old gwt projects and I started to 
>> study about 15 days ago the gwt framework, this is to specify that I don't 
>> know all the secrets of the framework yet.
>>
>> Following Nalu's approach and starting from his example at 
>> https://github.com/NaluKit/nalu-examples/tree/main/nalu-simple-app-example, 
>> I was able to start with the gwt:codeserver both client and server part of 
>> my projects successfully.
>>
>> Unfortunately, I still haven't figured out what I need to do to 
>> enablethe  debugging on the client part of the project on the IDE eclipse.
>>
>> I've read in this issue 
>> https://github.com/tbroyer/gwt-maven-plugin/issues/82 a possible 
>> solution, but it doesn't seem to work, I'm 100% sure I'm doing something 
>> wrong myself., can anyone tell me looking at Nalu's example what additional 
>> commands I need to set to configure to debugging on the client java code in 
>> the eclipse ide ?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-tool...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/3369c8a1-d86f-40de-9816-d35d865a1e4en%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/ed37a5ea-c5fa-4a74-9c37-3839311f410en%40googlegroups.com.


Re: How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-04 Thread Ralph Fiergolla
If I am not mistaken, you are mixing up things a little: the issue you were
looking at here https://github.com/tbroyer/gwt-maven-plugin/issues/82 is
not about debugging the generated client part of your application, but
about the compiler that is actually generating the code you want to debug.

To avoid wasting your time trying to set up the Eclipse Plugin I would
suggest using your browser's built-in development tools (Ctrl+Shift+I). You
will see your JAVA source code and can put your breakpoints etc. and step
through your code. This works in Chrome, Firefox, Edge.

Bon courage
Ralph

On Mon, Dec 4, 2023 at 1:16 PM Marco Tenti (IoProgrammo88) <
tentimar...@gmail.com> wrote:

> Hello everyone, I am updating some old gwt projects and I started to study
> about 15 days ago the gwt framework, this is to specify that I don't know
> all the secrets of the framework yet.
>
> Following Nalu's approach and starting from his example at
> https://github.com/NaluKit/nalu-examples/tree/main/nalu-simple-app-example,
> I was able to start with the gwt:codeserver both client and server part of
> my projects successfully.
>
> Unfortunately, I still haven't figured out what I need to do to enablethe
> debugging on the client part of the project on the IDE eclipse.
>
> I've read in this issue
> https://github.com/tbroyer/gwt-maven-plugin/issues/82 a possible
> solution, but it doesn't seem to work, I'm 100% sure I'm doing something
> wrong myself., can anyone tell me looking at Nalu's example what additional
> commands I need to set to configure to debugging on the client java code in
> the eclipse ide ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/3369c8a1-d86f-40de-9816-d35d865a1e4en%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CACwwWxN-%2Bzg8L%2Bm%2B074hfoY09XUgR2qvCPSPbtMO71JY9yjgYQ%40mail.gmail.com.


How to debug the java code on the eclipse ide with the tbroyer gwt maven plugin ?

2023-12-04 Thread Marco Tenti (IoProgrammo88)
Hello everyone, I am updating some old gwt projects and I started to study 
about 15 days ago the gwt framework, this is to specify that I don't know 
all the secrets of the framework yet.

Following Nalu's approach and starting from his example at 
https://github.com/NaluKit/nalu-examples/tree/main/nalu-simple-app-example, 
I was able to start with the gwt:codeserver both client and server part of 
my projects successfully.

Unfortunately, I still haven't figured out what I need to do to enablethe  
debugging on the client part of the project on the IDE eclipse.

I've read in this issue 
https://github.com/tbroyer/gwt-maven-plugin/issues/82 a possible solution, 
but it doesn't seem to work, I'm 100% sure I'm doing something wrong 
myself., can anyone tell me looking at Nalu's example what additional 
commands I need to set to configure to debugging on the client java code in 
the eclipse ide ?

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/3369c8a1-d86f-40de-9816-d35d865a1e4en%40googlegroups.com.