Code deployment issue

I have developed an application in Eclipse and created a JAR File for the same. I deployed the JAR File in UNIX environment and while executing the same I get the following Error:

(dstdbxx1:/export/home/edi_proc/PSON_Automation)$ls
LOG PSON PSONAutomation_2.jar REPORT xerces.jar
LSR PSONAutomation_1.jar PsonAutomation.jar setup.properties xercesImpl.jar
(dstdbxx1:/export/home/edi_proc/PSON_Automation)$java -jar PSONAutomation_2.jar
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xerces/parsers/SAXParser
at com.eschelon.xml.XMLHandler.parse(XMLHandler.java:21)
at com.eschelon.xml.XMLHandler.parse(XMLHandler.java:42)
at com.eschelon.main.LsrPsonComparer.main(LsrPsonComparer.java:73)

Can anyone please help me with this error?

Thanks and Regards

Harimadhav Balu

Actually the error has already told you what the problem is: Java couldn't find your Apache Xerces SAX parser. Are you sure the Xerces JARs are on your classpath?

http://xerces.apache.org/xerces-j/

Yeah, Actually I found the reason for the error. The Unix environment needed more references from Apache SAX Parser. Some how it was not required when I developed in Eclipse. Thanks for your time and consideration.

Regards

Hari