[EMAIL PROTECTED] wrote:
ok don't complain if it is a lot of code:
Well, that was really not much, but too hard to grasp, so lets begin from
another side:
> public void process(Map props) throws ProcessException {
> DOMResult res = null;
> TransformerFactory transFactory;
> Transformer transForm;
> String language;
> // XML Parsen en de preparatie van het document zodat de renderer
> // de juiste gegevens heeft.
> try{
> language = (String)props.get(languageKey);
> transFactory = TransformerFactory.newInstance();
Lets serialize xsl doc at this point to see whether it's ok:
Node xslDOM = (Node)TransformDocs.get(((String)props.get(languageKey)) +
"_XSL");
Transformer idTransform = transFactory.newTransformer();
idTransform.transform(new DOMSource(xslDOM), new StreamResult(System.out));
And what is at the System.out after that ?
--
Oleg Tkachenko
Multiconn International Ltd, Israel