You will get this error if you are using JDK 1.4 because an older version of Xalan is included with that JDK and it is getting mixed up. You must do something to get the correct version of Xalan loaded ahead of the JDK classes. One way of doing this is using the -Xbootclasspath argument to java like this:
-Xbootclasspath/p:/path/to/xalan.jar:/path/to/xercesImpl.jar Note that the p: you see is not a windows drive, but is part of the option. The path starts after the p: Chris Joseph Kesselman/CAM/Lotus wrote: >>java.lang.ClassNotFoundException: >>org/apache/xml/dtm/ref/IncrementalSAXSource_Xerces >> > >That class has been in our Xalan distributions for many months. Check your >classpaths? > > > -- Chris P. McCabe - Senior Software Systems Architect Choice Hotels International - Information Technology [EMAIL PROTECTED] 602-953-4416
