Posted By:
Luigi_Viggiano
Posted On:
Wednesday, April 18, 2001 12:57 PM
com.sun.xml.tree.* is contained in a jar called "parser.jar" that is not in your classpath.
I suggest you to not import com.sun.xml.* (it's wrong...) and to read more about jaxp to keep xml "implementation independency".
Is a good practice to import only org.w2c.dom.*, org.xml.sax.* and javax.xml.parsers.*, and no more third part xml packages.
xerces.jar is a parser (from Apache group),
crimson.jar is another parser (from Apache group, involved from Project X),
parser.jar is another one (Project X from Sun)...
May be wrong to keep different implementation of the same thing in the classpath...