Github user HansBrende commented on the issue: https://github.com/apache/any23/pull/56 @lewismc I really have no idea how to deploy to Tomcat, being a bit of a noob, but have you tried doing something like this in `Servlet.java`? ``` if (loadedJars) { ExtractorRegistry r = ExtractorRegistryImpl.getInstance(); pManager.getExtractors().forEachRemaining(r::register); ... } ```
---