Re: Problem decoding complex AutoBean

2020-07-10 Thread Colin Alworth
I'm not seeing any issue with that code and sample JSON. Here's a quick entrypoint that I made: @Override public void onModuleLoad() { IWebchatThemeConfigurationBean bean = deserializeFromJson("{\n" + "\"themeId\": 1,\n" + "\"name\":

Re: Problem decoding complex AutoBean

2020-07-10 Thread Akshay Kumar
Can anyone help me? My json string is - { "themeId": 1, "name": "rpc", "enabled": true, "propertiesList": [ { "id": 1, "themeConfigurationId": 1, "chatScreen": "chatScreen", "component": "header", "property": "text", "value": "HELLO" }, { "id": 3, "themeConfigurationId": 1, "chatScreen":

Re: GWT Server and debug

2020-07-10 Thread Jasper Suijker
Gwt by default converts my(your) code to javascript (JS). With the "old" browser plugin we were able to add breakpoints in the client java code and when running the app, the debugger stopped at those points. I understand, that when running in superdevmode, this works differently. Does anyone has