I am following this Google developers documentation https://developers.google.com/appengine/docs/java/modules/
It mentions that one can configure a module to accept requests from other modules by adding the <login>admin</login>
specification to the module's handler.
I assume that the handler being referred to here is the web.xml document of the module that is accepting the requests.
Where in the web.xml document is one supposed to add <login>admin</login>
? It seems that everywhere I add it, I get an error from eclipse.
You setup your modules in appengine-web.xml, the main one where you put your modules in, determine instance class and scaling and whatnot.... I am pretty sure this is where your login should go.