You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by Amit Kirdatt <ak...@uhc.com> on 2001/11/14 18:31:30 UTC

XSLTransform

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