help
hello
I am sorry i still have a problem.
when i tried your mehtod 2 as follows it works
InputStream in = application.getResourceAsStream("/xml/first_top.xml");
Document doc = docBuilder.parse(in);
But the strange thing is that i just did n't define 'application' as a servletcontext object and when i added the line
ServletContext application = getServletConfig().getServletContext();
it raises an jasperexception
Why is this happen ? is it because application is an implicit object ?

