I'm a bit lost here and I should know this by now, but I don't. I have exclusively been working with backend Java by exposing REST-services. Now I want to include a file, such as an *.html file, in my project that anyone should be able to access using https. I have included a file in my project root and I have added:
<resource-files>
<include path="/**.html" />
</resource-files>
in my appengine-web.xml. Then I deploy it on
https://myhostingdomain.appspot.com/thenameofthefile.html
This does not work. I've also tried going into servlet mapping in web.xml and map url pattern to *.html but no luck so far. Any advice regarding this would be appreciated.