I've posted an mbean that integrate catalina in jboss. It works but need to change the xml parser used by jboss to crimson 1.1 (sax 2.0) http://xml.apache.org The modification in jboss sources to obtain a working jboss distribution with new xml parser are: in file src/etc/run.mf: replace parser.jar with crimson.jar in file src/build/build.xml: replace parser.jar with crimson.jar rm src/lib/parser.jar rm lib/parser.jar cp crimson.jar src/lib/. cp crimson.jar lib/. cp jaxp.jar lib/. cp jaxp.jar src/lib/. The main reason is that catalina uses crimson: the component available (xalan, taglib, fop ... ) before or later will use crimson too. The cohesistence of 2 different xml parser (sax 1 and sax 2) in the same VM (with 2 different classloader) is an orrible solition that produce only many 'sealing violation exception', usually caused by sax classes. Any suggestion and opinion about this? Fulco _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development
