> Hi Scott,
> perhaps the problem is to do with the way I am setting the SystemId?
> at the moment I am setting it using a String:
>
> Source xslSource = new StreamSource(new File("d:/blah.xsl");
> xslSource.setSystemId("d:/blah.xsl");

Try setting a path as system ID:

Source xslSource = new StreamSource(new File("d:/blah.xsl");
xslSource.setSystemId("d:/");

Regards.

--
Bjoern Martin                                [EMAIL PROTECTED]


Reply via email to