Hi,
I need to load log4j.xml config file in my web to initialize logging. log4j.xml is in package com.test.config.
when in j2se java app code
InputStream input = ClassLoader.getSystemClassLoader().getResourceAsStream("com/test/config/log4j.xml");
resturns input stream but when I execute this in servlet it returns null. servlet is java web app deployed on glassfish 2.1
what's the difference?