installing Xerces
hi,
i need ur clarification regarding instalation of Xerces parser:
i recently downloaded the xerces.bin.zip from http://xml.apache.org and extracted it into a new folder called "xerces" using WinZip.
i have "j2sdk1.4.2" version of jdk in my system that operates using Windows 2000 (professional editon).
what are the steps i should take to configure Xerces parser on my system; specifically how should the path/classpath be set?
thanks in advance
[468 byte] By [
fip04] at [2007-11-18 18:45:31]

# 1 Re: installing Xerces
Read
http://xml.apache.org/xerces2-j/install.html
To see which jar files are needed for what.
There are several ways you can use java jar files, you could put them in the folder $JAVA_HOME/jre/lib/ext. Or you could configure your CLASSPATH enviroment variable to point at the jar files. Note that the class path must point directly at the jar files, not just the folder they are located in. Or you could just run java with a classpath argument like this
java -cp jarfile1.jar:jarfile2.jar:jarfile3.jar javaclass arguments
khp at 2007-11-10 3:28:14 >
