Hi All, I have a problem here.I am using Third Party libraries in my application.A class in that 3rd party jar uses a prop file like below.: A a_class = A.class; InputStream is = a_class.getResourceAsStream("/password.properties")); Clearly it wants the password.properties under WEB-INF/classes ie at the classpath's root. If I put it under WEB-INF/classes,my problem gets resolved. However,the only problem here is ...