This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

I can't transform XML in code...


Hi, i try to run this code to transform XML but without success, it give me 
an error, "no such method error"

Can anyone plse help me out with this? it is very urgent...

import org.apache.xalan.xslt.XSLTProcessor;
import org.apache.xalan.xslt.XSLTResultTarget;
import org.apache.xalan.xslt.XSLTInputSource;
import org.apache.xalan.xslt.XSLTProcessorFactory;
import com.lotus.xsl.*;
import org.xml.sax.SAXException;
import java.io.*;
import org.xml.sax.*;

public class test30
{
	public static void main(String[] args)
	{
		try
		{
		XSLTInputSource inputXML = new XSLTInputSource("trying1.xml");
		XSLTInputSource inputXSL = new XSLTInputSource("trying.xsl");
		XSLTProcessor processor = XSLTProcessorFactory.getProcessor();
		processor.process(inputXML, inputXSL, new XSLTResultTarget(System.out));
		}catch(Exception e)
		{
			System.out.println(e);
		}
	}
}

Thanks!

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]