While upgrading SMARTGWT with 12.1-p20200813, I was getting below
Exception :- [ERROR] 2020-09-23 18:25:26.635 [http-nio-8080-exec-4] TrackerServiceController - Uncaught throwable on the client. Message: "(TypeError) : Cannot read property 'a' of null".
Cause:- Something changed in the latest GWT on receiving data from the server.
The server sends an entity data that includes some numbers (ex: childTypes:8642, deleteMask:0), but when client code processes that, those properties are null.
After I've added a temporary workaround to check for null and treat them as 0, the Uman stopped throwing that error.
The data from the server has nonnull values, so it's a client problem.
Please provide me solution .
Exception :- [ERROR] 2020-09-23 18:25:26.635 [http-nio-8080-exec-4] TrackerServiceController - Uncaught throwable on the client. Message: "(TypeError) : Cannot read property 'a' of null".
Cause:- Something changed in the latest GWT on receiving data from the server.
The server sends an entity data that includes some numbers (ex: childTypes:8642, deleteMask:0), but when client code processes that, those properties are null.
After I've added a temporary workaround to check for null and treat them as 0, the Uman stopped throwing that error.
The data from the server has nonnull values, so it's a client problem.
Please provide me solution .
Comment