Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question

closed as too localized by casperOne Sep 5 '12 at 11:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

I found the problem which turned out to be my file name my exact file name is not there so the problem is if any file equals the following regular expression it will not be uploaded to the deployment at all:-

skip_files: | ^(./)?( (app.yaml)| (app.yml)| (index.yaml)| (index.yml)| (#.#)| (.~)| (..py[co])| (./RCS/.)| (..*)| )$

but this is a GO version of a file called skip_files here is the link on the google docs:- https://developers.google.com/appengine/docs/go/config/appconfig#Skipping_Files

any idea if we can over ride this value in a JAVA app?

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.