/THUFIR HAWAT/:

[EMAIL PROTECTED] xml]$ java org.apache.xalan.xslt.Process -IN foo.xhtml -XSL foo.xsl -OUT foo.out Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xalan/xslt/Process
[EMAIL PROTECTED] xml]$ java -version
java version "1.5.0_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing)

You have to put the Xalan library on the classpath. Either add it to the CLASSPATH environment variable or specify it on the command line:

java -cp <path_to>/xalan.jar org.apache.xalan.xslt.Process ...

--
Stanimir

Reply via email to