Re: Access MANIFEST.MF from web-application

2006-06-30 Thread David Smith
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

Access MANIFEST.MF from web-application

2006-06-30 Thread Peter . Zoche
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