The RPC GWT / AppEngine interface is powered by me! I get errors like this:
INFO: javax.servlet.ServletContext log: UserService: ERROR: The serialization policy file '/55585D0849A4549E3FCE91B33725B02F.gwt.rpc' was not found; did you forget to include it in this deployment?
every time I run Devserver. I set public-root
correctly in appengine-web.xml
(the rest of the application is served OK, except for the .gwt.rpc
files).
<static-files> <include path="**" /> <include path="**.nocache.*" expiration="0s" /> <include path="**.rpc" expiration="0s" /> <include path="**.cache.*" expiration="365d" /> </static-files> <resource-files> <include path="**.gwt.rpc" /> </resource-files>
What am I doing wrong? Help me please!
source share