Hi,

I have used flexible runtime for a backend for weeks on this app, until 
after a resent update the backend started to give 404 on everything except 
static files. Now it appears that any deployment of flexible environment 
module on the app does not execute servlets.

To show this, I have uploaded a plain 1 servlet + 1 static file app on two 
new modules, 
1) module test on standard environment 
2) module testvm on flexible environment. 

Both modules return static content without a problem:
https://test-dot-gazeting-test.appspot.com/
https://testvm-dot-gazeting-test.appspot.com/

However, 404 is returned by the flexible environment module when calling a 
servlet url
https://test-dot-gazeting-test.appspot.com/example
https://testvm-dot-gazeting-test.appspot.com/example

The servlet mapped to /example only contains:

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
resp.getWriter().println("ExampleServlet is good");
}

The only difference between the two modules are the entries <module> and 
<vm> in the appengine-web.xml. I have tried to disable pre-compilation, but 
it did not make a difference.

This only seems to affect new deployment, because I have an older version 
of another module that works just fine, any new version for it fails.

Could anyone please share a clue about what might be the problem? Or what I 
might be missing?

Thank you.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/1fec1749-6095-4379-a67f-1677d91df2e4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to