Try looking at ServletContext.getResourceAsStream(path)
--David
[EMAIL PROTECTED] wrote:
Hi all!
Is it possible to get access to the MANIFEST.MF in META-INF from my
web-application?
I would like to read the version info stored there to be used in my
web-applicaton.
InputStream mfis =
this.get
Hi all!
Is it possible to get access to the MANIFEST.MF in META-INF from my
web-application?
I would like to read the version info stored there to be used in my
web-applicaton.
InputStream mfis =
this.getClass().getClassLoader().getResourceAsStream("META-INF/MANIFEST.MF"
);
Manifest mf = new Mani