I'm trying to access a file on my app website the file is under the war directory under two sub directories which are docs/freight, when I try to access it locally by putting myWebsite/docs/freight/myFileName.xlsx things go fine and a save popup appears but when I deploy my app to the google app engine and try to open it by the same way I got the following error:- Error: Not Found The requested URL /docs/freight/myFileName.xlsx was not found on this server.
I have this configuration in my appengine-web.xml under static-files tag
<static-files>
<include path="**" />
<!-- The following line requires App Engine 1.3.2 SDK -->
<include path="**.nocache.*" expiration="0s" />
<include path="**.cache.*" expiration="365d" />
<include path="/**.png" expiration="30d" />
<include path="/**.jpg" expiration="30d" />
<include path="/**.jpeg" expiration="30d" />
<include path="/**.gif" expiration="30d" />
<include path="/**.swf" expiration="30d" />
<include path="/**.flv" expiration="30d" />
<include path="/**.mov" expiration="30d" />
<include path="/**.mp4" expiration="30d" />
<exclude path="**.gwt.rpc" />
</static-files>
So whats wrong ?