Steps to produce this issue: 1. deploy GWT project to server.
2. open browser to access it.
3. change any shared POJO which need to be serialized, this will change the strong name of serialization policy.
4. re-deploy the project, and do NOT close the Browser.
5. do some operation in your project.
The error:[#|2015-07-09T22:05:12.014-0700|INFO|glassfish3.1.1|javax.enterprise.system.container.web.com.sun.enterprise.web|_ThreadID=20;_ThreadName=Thread-2;|PWC1412: WebModule[null] ServletContext.log():techServlet: ERROR: The serialization policy file '/IMSChangeMan/B10ED1C148FA6A9D8A391125ABE1E3B3.gwt.rpc' was not found; did you forget to include it in this deployment?|#]
[#|2015-07-09T22:05:12.017-0700|INFO|glassfish3.1.1|javax.enterprise.system.container.web.com.sun.enterprise.web|_ThreadID=20;_ThreadName=Thread-2;|PWC1412: WebModule[null] ServletContext.log():techServlet: WARNING: Failed to get the SerializationPolicy 'B10ED1C148FA6A9D8A391125ABE1E3B3' for module 'http://testimsgf/IMSChangeMan/IMSChangeMan/'; a legacy, 1.3.3 compatible, serialization policy will be used. You may experience SerializationExceptions as a result.|#]
com.google.gwt.user.client.rpc.SerializationException: Type 'com.tech.entity.qautil.code_lookup.AppRef' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' and did not have a custom field serializer.For security purposes, this type will not be serialized.: instance = com.tech.entity.qautil.code_lookup.AppRef@7093b8d8I know why we can NOT load the serialization policy file after redeploy, it's because the strong name is updated; but i don't understand why we can NOT fix this issue by refreshing the browser.
anyone encountered the same issue, please help ~!Thanks,
Ronggen