Re: Is moving away from RPC a good idea?

2024-01-11 Thread Vassilis Virvilis
Hi Vegegoku, Thanks for clearing that up. At some point I will definitely try the domino-rest/jackson. For now I dread the time I will eventually be forced to port my current setup. On Thu, Jan 11, 2024 at 5:13 PM Vegegoku wrote: > The annotation on the POJO is not required at all,

Re: Is moving away from RPC a good idea?

2024-01-11 Thread Vegegoku
The annotation on the POJO is not required at all, Domino-rest will auto generate the json-mapping classes if the jax-rs/jakarata resource consumes/produces a json even if the annotation is missing, so you can keep the POJO clean or only have Jackson compatible annotations. ;-) On Thursday,

Re: Is moving away from RPC a good idea?

2024-01-11 Thread Vegegoku
Domino-rest is up-to-date well documented and in our next release -Currently available in the HEAD-SNAPSHOT- we are moving to jakarta namespace. Full documentation can be found in our website here https://dominokit.com/solutions/domino-rest/v1/docs/getting-started On Wednesday, January 10,

Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-11 Thread Filipe Sousa
 On Tuesday, January 9, 2024 at 9:36:08 PM UTC Colin Alworth wrote: > I'm excited to announce the release of 2.10.1 and 2.11.0! This is our > second release under the new groupId, be sure when you update to change > away from "com.google.gwt", as it will not get more updates. > > If you use

Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-11 Thread lofid...@gmail.com
Great work GWT Team! Thanks a lot! Lofi am...@mun.co.il schrieb am Donnerstag, 11. Januar 2024 um 10:56:43 UTC+1: > Thank you! > > On Tuesday, January 9, 2024 at 11:36:08 PM UTC+2 Colin Alworth wrote: > >> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our >> second release

Re: The GWT application hangs on the loading screen

2024-01-11 Thread 'Frank Hossfeld' via GWT Users
Check if the nochache.js gets loaded at a applicaiton staert or if it got a 404. In this case something with the URI is not ok. Antonio Capone schrieb am Donnerstag, 11. Januar 2024 um 10:56:55 UTC+1: > Hi all. I deployed an app using GWT on Cloud. It's deployed and working, > but when you log

Re: Is moving away from RPC a good idea?

2024-01-11 Thread 'Frank Hossfeld' via GWT Users
Using domino-rest, the POJO have usually only one annotation: @JSONMapper. Vassilis Virvilis schrieb am Donnerstag, 11. Januar 2024 um 09:35:05 UTC+1: > First of all thanks for doing this work. It is hugely appreciated and > required in order to avoid GWT and GWT projects look like zombies in a

The GWT application hangs on the loading screen

2024-01-11 Thread Antonio Capone
Hi all. I deployed an app using GWT on Cloud. It's deployed and working, but when you log in, the browser window just says "Loading" and seems to hang indefinitely. Works fine locally in Eclipse. Has this ever happened to you? Is there anyone who can help me understand why this happens? Many

Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-11 Thread am...@mun.co.il
Thank you! On Tuesday, January 9, 2024 at 11:36:08 PM UTC+2 Colin Alworth wrote: > I'm excited to announce the release of 2.10.1 and 2.11.0! This is our > second release under the new groupId, be sure when you update to change > away from "com.google.gwt", as it will not get more updates. > >

Re: Is moving away from RPC a good idea?

2024-01-11 Thread Vassilis Virvilis
First of all thanks for doing this work. It is hugely appreciated and required in order to avoid GWT and GWT projects look like zombies in a dead landscape. I am using RestyGWT and yes I also believe it uses Generators (GWT.create() ?). I am facing a problem there since RestyGWT is deadish