Hi Preben, I was facing the same problem. Seems to be a problem with Weblogic's TransformerFactory Implementation. I solved it by specifying an alternate Implementation: You can either use the system parameter -Djavax.xml.transform.TransformerFactory=<your impl class> or create a file META-INF/services/javax.xml.transform.GransformerFactory with <your impl class> as content in your JAR.
I am currently using com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl as <your impl class> any of net.sf.saxon.TransformerFactoryImpl org.apache.xalan.processor.TransformerFactoryImpl should work, too. Cheers Henning -- View this message in context: http://camel.465427.n5.nabble.com/Problem-with-XmlConverter-after-upgrade-to-2-12-3-tp5748082p5748380.html Sent from the Camel - Users mailing list archive at Nabble.com.
