Re: [Wicket-user] Best way to get contents of the manifest.MF file?

2006-08-15 Thread Gwyn Evans
It depends on what you want from it - You could get some information from it via the Package class, e.g. public String getVersion() { String implVersion = null; Package pkg = this.getClass().getPackage(); if (pkg != null)

[Wicket-user] Best way to get contents of the manifest.MF file?

2006-08-15 Thread Nino Wael
Hi whats the best way to retrieve information from the manifest file?   I’ve been looking at servletcontext but that does not seem to be a very wicket like approach?   Should I register the manifest file as a resource and use it that way?     Regards Nino --