Re: GWT RPC call recognized as a Java Method Injection by Fortiweb

2023-07-25 Thread Michael Conrad
Did y'all test DominoKit? It is actively maintained and has a REST module. I'm curious if you did test it what shortcomings you may have run into. On Tuesday, July 25, 2023 at 9:23:53 AM UTC-4 RobW wrote: > We got to a similar point. Looked in depth at moving the GWT front end to > a REST API -

Re: Partial super source? Possible?

2023-07-25 Thread Thomas Broyer
On Tuesday, July 25, 2023 at 2:26:14 PM UTC+2 Bruno Salmon wrote: The shadow super-source should work in my case, thank you. If later I want to move from GWT to J2CL, will I have a similar feature (ex: providing my own implementation of String.format() if not emulated) ? IIRC, no: each sour

Re: GWT RPC call recognized as a Java Method Injection by Fortiweb

2023-07-25 Thread 'RobW' via GWT Users
We got to a similar point. Looked in depth at moving the GWT front end to a REST API - but found two big drawbacks: 1. none of the frameworks we could find had async callback handling similar to GWT-RPC, with common interface classes client server side AND support JAX-RS subresources.

Re: Partial super source? Possible?

2023-07-25 Thread Bruno Salmon
The shadow super-source should work in my case, thank you. If later I want to move from GWT to J2CL, will I have a similar feature (ex: providing my own implementation of String.format() if not emulated) ? On Friday, 21 July 2023 at 16:34:23 UTC+1 Colin Alworth wrote: > I don't use String.form