Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Refer to Logging for more details.

Other Issues

This section contains some "Other Issues" you may experience trying to run your code in the Google App Engine. It is worth reading, since it may save your time trying to figure out why the application behaves differently in comparison to a regular servlet container.

Context Path

Usually the uri in a servlet container looks like this:

Code Block
requestURI = contextPath + servletPath + pathInfo

while in most servlet containers context path is a war name (or it can be configured), in App Engine it's just empty.
So if your servlet is mapped to "rest", access http://host:port/restImage Added.

References