Hi guys,
just today downloaded Xalan and everything looks nice but I get stupid problem
A fragment of my code is
File xslFile = new File("t1.xsl");
template = _transformerFactory.newTemplates(new StreamSource(xslFile));
templateCash.addTemplate(requestName , template);
transformer = template.newTransformer();
on the lst line I get the exception
Compile errors:
File "file:/D:/jdk1.3/lib/file:/D:/t1.xsl" not found.
I think it happens during processing of my XSL file. Should I configure my TransformerFactory or something else? It's trying to take the file from wrong location. I'm working on NT. May be file separator symbol?
Any ideas? It looks pretty stupid.
Roman
