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.


GWT Eclipse Plugin 4 Problem

2023-12-11 Thread Bob Lacatena
Hey. My coworker and I ran into trouble installing the GWT plugin on 
Eclipse 2023-12 (worked fine on 2023-09, so this isn't urgent, I'm just 
letting you know).
 
A couple of weeks ago I got a new Mac, installed Eclipse 2023-09 and the 
GWT plugin, no problem.

My coworker just got a new PC (Windows 11), and got Eclipse 2023-12 (just 
released), tried to install the GWT plugin as I did, and could not.  It 
first required JustJ Adoptium OpenJDK 21.

  JustJ Adoptium OpenJDK Hotspot JRE Complete 21.0.1.v20231028-0937 
org.eclipse.justj.openjdk.hotspot.jre.full.feature.group Eclipse JustJ

After doing so, getting the GWT plugin still failed.  First it says "Cannot 
complete operation.  Computing alternate solutions, may take a while: X/15"

Then it tells you it failed, giving you a chance to select other features 
(but there is only one).

I confirmed that this also happens with 2023-12 on my Mac.

My co-worker dropped back to 2023-09 on his PC, and it installed fine.

Just an FYI.


-- 
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/536eb3ac-b486-4e6d-8ce3-e72085dc7b5cn%40googlegroups.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: DominoKit tools new releases

2023-12-11 Thread Filipe Sousa


On Sunday, December 10, 2023 at 2:54:12 PM UTC Vegegoku wrote:

> We are glad to announce the new releases of Dominokit tools :
>
> *Domino-ui 2.0.0-RC5*
> Find release notes here 
> https://github.com/DominoKit/domino-ui/releases/tag/2.0.0-RC5
> *Domino-ui 1.0.6*
> Find release notes here 
> https://github.com/DominoKit/domino-ui/releases/tag/1.0.6
>
> *Domino-jackons 1.0.2 - 1.0.4*
> The releases introduced a better way to do super sources that is 
> compatible with GWT and J2CL, upgraded dependencies, moved to java 11 and 
> introduces custom (de)serializers support.
>
> *Domino-jackons 1.0.1 - 1.0.2*
> The releases introduced a better way to do super sources that is 
> compatible with GWT and J2CL, upgraded dependencies, moved to java 11 and 
> fixes some minor issues.
>
>
> We would like to remind you that you can now check our documentation for 
> different DominoKit tools within our website :
>
> - Domino-ui documentation
> https://dominokit.com/solutions/domino-ui/v2/docs/getting-started
>
> - Domino-jackson documentation
> https://dominokit.com/solutions/domino-jackson/v1/docs/getting-started
>
> - Domino-rest documentation
> https://dominokit.com/solutions/domino-rest/v1/docs/getting-started
>
> - Domino-history documentation
> https://dominokit.com/solutions/domino-history/v1/docs/getting-started
>
> Your feedback is welcome and please help us spread the knowledge
>

-- 
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/766222ca-f3ed-4a01-b8fa-f7adec4bcc80n%40googlegroups.com.


Re: DominoKit tools new releases

2023-12-11 Thread cbruno...@gmail.com

Great work. im a fan.
On Sunday, December 10, 2023 at 8:54:12 AM UTC-6 Vegegoku wrote:

> We are glad to announce the new releases of Dominokit tools :
>
> *Domino-ui 2.0.0-RC5*
> Find release notes here 
> https://github.com/DominoKit/domino-ui/releases/tag/2.0.0-RC5
> *Domino-ui 1.0.6*
> Find release notes here 
> https://github.com/DominoKit/domino-ui/releases/tag/1.0.6
>
> *Domino-jackons 1.0.2 - 1.0.4*
> The releases introduced a better way to do super sources that is 
> compatible with GWT and J2CL, upgraded dependencies, moved to java 11 and 
> introduces custom (de)serializers support.
>
> *Domino-jackons 1.0.1 - 1.0.2*
> The releases introduced a better way to do super sources that is 
> compatible with GWT and J2CL, upgraded dependencies, moved to java 11 and 
> fixes some minor issues.
>
>
> We would like to remind you that you can now check our documentation for 
> different DominoKit tools within our website :
>
> - Domino-ui documentation
> https://dominokit.com/solutions/domino-ui/v2/docs/getting-started
>
> - Domino-jackson documentation
> https://dominokit.com/solutions/domino-jackson/v1/docs/getting-started
>
> - Domino-rest documentation
> https://dominokit.com/solutions/domino-rest/v1/docs/getting-started
>
> - Domino-history documentation
> https://dominokit.com/solutions/domino-history/v1/docs/getting-started
>
> Your feedback is welcome and please help us spread the knowledge
>

-- 
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/989c444f-5d35-471e-8657-2ac316aa5c7fn%40googlegroups.com.


Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-11 Thread Jens
Generally Java 17 works for running GWT but source level still needs to be 
11 for GWT client/shared code as GWT only supports compiling Java 11 source 
files. Server code can be anything. If you use GWT-RPC you might need to 
add some --add-opens to your server 
JVM: https://github.com/gwtproject/gwt/pull/9791

-- J. 

Victor Colina schrieb am Freitag, 8. Dezember 2023 um 14:55:58 UTC+1:

> Thanks for the response, If I change to GWT 2.9 I can still use jdk 17? Or 
> I have to go lower?
>
> On Friday, December 8, 2023 at 9:05:37 AM UTC-4 Frank Hossfeld wrote:
>
>> Assuming you are using GWT 2.10.0, GXT expects a few things, (f.e.: 
>> user-agent ie8) which have been removed in GWT 2.10.0.
>> You have to stay with GWT 2.9.0. (see: 
>> https://docs.sencha.com/gxt/4.x/guides/announcements/Announcements.html)
>>
>> Victor Colina schrieb am Donnerstag, 7. Dezember 2023 um 17:48:29 UTC+1:
>>
>>> I'm trying to compile a simple GWT project with GXT 4. The compilation 
>>> works unitl I add the gxt.
>>>
>>> [image: imagen_2023-12-07_124453814.png]
>>>
>>>
>>>
>>> This is my gwt.xml file.
>>>
>>> [image: imagen_2023-12-07_124712961.png]
>>>
>>> If anybody can help me, thanks in advance.
>>>
>>

-- 
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/931c6599-28d0-4586-9ad0-d499c6e22114n%40googlegroups.com.