I am trying to create a PDF from a org.w3c.dom.Document and and XSL file I have on my file system
since XSLTransform is up to such a task I tried this
 
<**************************Code**********************************>
 
Document outDoc = null;
XSLTransform.transform(xmlDoc, xslInputStream, outDoc);
 
<**************************Code**********************************>
 
 
But somehow the outDoc is null.
According to the api it should've have written out to outDoc.
 
I am sure I am doing something wrong ...
If somebody has some insights/suggestions I would really appreciate it
 
Amit
 

Reply via email to