Hi,
Has anyone any ideas on where I am going wrong here?
***************************
StreamSource XMLInput = new StreamSource(new File(XMLSource)); //String
XMLSource is a path to XML file
StreamSource XSLInput = new StreamSource(new File(stylesheet)); //String
stylesheet is a path to a file
TransformerFactory tFactory = TransformerFactory.newInstance();
Templates transletTemplate = tFactory.newTemplates(XSLInput);
Transformer translet = transletTemplate.newTransformer(); <-------BOMBS
OUT HERE
translet.transform(XMLInput,new StreamResult(output));
********************
Exception msg says that "stylesheet".class was not found and I get a bunch
of classes "stylesheet$1.class - stylesheet$6.class) created...?
Thanks,
Paul.