This content has been marked as final.
Show 2 replies
-
1. Re: Servlet not found
luksa Feb 20, 2014 6:46 AM (in response to nikolay.mitev)Remove <include path="**" /> from appengine-web.xml.
When this line is present in appengine-web.xml, CapeDwarf will treat _everything_ as a static file (no servlet will ever be invoked). I'm trying to figure out if that's correct or not. Here's what GAE docs say:
https://developers.google.com/appengine/docs/java/gettingstarted/staticfiles says:
Any request for a URL whose path matches a static file serves the file directly to the browser—even if the path also matches a servlet or filter mapping.
Appspot doesn't follow this rule, apparently.
-
2. Re: Servlet not found
luksa Feb 20, 2014 8:57 AM (in response to luksa)I have opened https://issues.jboss.org/browse/CAPEDWARF-227