Re: Problem with system property

2009-07-10 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 7/8/2009 7:42 AM, André Warnier wrote: > - Bitterly complain to the supplier of that app. +1 > - in the meantime, run this app in a separate Tomcat (and JVM) instance. +2 We run all of our (4) webapps in separate JVMs, mostly because we'

RE: Problem with system property

2009-07-08 Thread Caldarale, Charles R
> From: CBy [mailto:tom...@byrman.demon.nl] > Subject: Problem with system property > > We have a third-party webapp that sets the following system property: > > System.setProperty("javax.xml.transform.TransformerFactory","net.sf. > saxon.TransformerFactoryImpl"); Serious anti-social behavior.

RE: Problem with system property

2009-07-08 Thread Mike Frohme
You could always silo offending applications like that into their own containers - give them their own space and let them not affect the rest of your infrastructure. How you interact with that application/service may dictate your ability to do that cleanly, but those are larger architectural d

Re: Problem with system property

2009-07-08 Thread André Warnier
CBy wrote: Hi, We have a third-party webapp that sets the following system property: System.setProperty("javax.xml.transform.TransformerFactory","net.sf.saxon.TransformerFactoryImpl"); This effectively forces all other webapps to use Saxon as an XLST/XQuery processor, see: http://java.su