Xalan classes in jdk1.5
My Java application works with 1.4.x versions of java.
If I use 1.5, the following error is thrown :
java.lang.NoClassDefFoundError: org/apache/crimson/tree/XmlDocument
I compared the jar libraries in 1.4.x and 1.5 and found that the xalan classes are missing in 1.5.
What should I do to correct this. Add xalan.jar additionally to the classpath ?
is there a packaging change in 1.5 ?

