Re: GWT RPC Serialization Error

2022-07-22 Thread Jens
Your interface has a type parameter with no upper bound so it is effectively Object. Thus GWT does not know which classes to scan because it will not scan every subclass of Object. Either give your type parameter an upper bound using a common interface or create a dummy method in your service

GWT RPC Serialization Error

2022-07-22 Thread Abhishek Yadav
I am using GWT 2.9 and I am getting below error SEVERE: Exception while dispatching incoming RPC call com.google.gwt.user.client.rpc.SerializationException: Type 'com.xyz.nos.model.NosOptionModel' was not included in the set of types which can be serialized by this SerializationPolicy or its

Re: [WARN] 404 - GET //10.14.0.224:8888/sampleapp/sampleapp.nocache.js

2022-07-22 Thread Abhishek Yadav
Thanks Frank & Craig Mitchell. It is working now. On Wednesday, July 20, 2022 at 10:33:59 AM UTC+5:30 ma...@craig-mitchell.com wrote: > I thought you had to put a "-bindAddress 0.0.0.0" to get access to your > actual IP address. > > Have you tried accessing it from http://127.0.0.1:/ ? >

Re: Startup error: Object of class 'com.google.gwt.dev.shell.jetty.JettyLauncher.WebAppContextWithReload' is not of type 'org.eclipse.jetty.webapp.WebAppContext'.

2022-07-22 Thread Thomas Broyer
On Thursday, July 21, 2022 at 5:10:40 PM UTC+2 mmo wrote: > OK - thanks for letting me know! I interpret that such that gwt:run and > gwt:debug aren't working/supported anymore, right? Well, first, regarding the plugin you're using: “The legacy maven plugin is still supported but it is

Re: How interpret error messages?

2022-07-22 Thread Jens
GWT supports the validation API 1.0.0 with hibernate validator as implementation. GWT itself only ships/depends on the validation api but implementation needs to be added manually. The documentation how to use it can be found at https://www.gwtproject.org/doc/latest/DevGuideValidation.html