Re: is it possible to debug GWT projects (breakpoints, step through code etc) ?

2024-06-24 Thread 'Daniel Webb' via GWT Users
Thanks Jens, I appreciate the answer, gives me something to have a go at. Regards Daniel. On Monday 24 June 2024 at 11:20:15 UTC+1 Jens wrote: > Debugging server code is done as usual using Java debug wire protocol > (JDWP) remote debugging. > Debugging client code is done using the browser dev

Re: module java.base does not "opens java.lang" to unnamed module

2024-06-24 Thread 'Tim Macpherson' via GWT Users
Apparently: when running in a sandboxed environment on the cloud there is a controlled module structure which ensures proper access permissions. This typically prevents the need for reflection to access private fields. This seems to be the case for throwing IllegalArgumentException on App Engine

Re: is it possible to debug GWT projects (breakpoints, step through code etc) ?

2024-06-24 Thread Jens
Debugging server code is done as usual using Java debug wire protocol (JDWP) remote debugging. Debugging client code is done using the browser dev tools which also allows setting breakpoints. During development GWT CodeServer should be started using '-style PRETTY -XmethodNameDisplayMode ABBREVI

is it possible to debug GWT projects (breakpoints, step through code etc) ?

2024-06-24 Thread 'Daniel Webb' via GWT Users
Hi, Is it possible to debug GWT projects - setting breakpoints and stepping through code? This would be server and/or client debugging. We've just had our internal GWT based app updated and it now uses maven to run (clean install appengine:run). The eclipse plugin based debugging technique tha