I can get a static resource like this with AppEngine:
InputStream is =
getServletContext().getResourceAsStream("/WEB-INF/config/Reports.xml");
However, I need to get this static resource URI and pass it on to a Java class which is not a Servlet.
What is the strategy to pass URI if this is the case?
1 Answer