Added 2 jar files for IBM integration in Java. Getting this exception:
error at :: BarFile b = BarFile.loadBarFile("C:\\Users\\Uni\\Desktop\\outputt\\Dev_BAR.bar");
root cause:::::::::
java.lang.ClassNotFoundException: com.ibm.broker.config.proxy.BarFile
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1714)
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1559)
com.cts.XmlExtract.extract(XmlExtract.java:25)
com.cts.BrokerServlet.doGet(BrokerServlet.java:30)
javax.servlet.http.HttpServlet.service(HttpServlet.java:621)
javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
When developing a java project using an IDE (perhaps IBM's RAD or Eclipse) it is important to remember that there are two classpath that you care about:
The error you are receiving is happening because the Runtime Classpath does not contain one (or both) of the jars that you are attempting to add to your project.
You can add a jar to the Runtime Classpath using one of the following techniques:
Add the jar to the WEB-INF/libs directory in your web app project. This technique guarantees that the jar will be distributed with your WAR file, but also guarantees that the jar will not be shared by other projects that may want to use the jar.
If you are building an EAR, add the jar to the EAR file. It's been a while since I built an ear, so I dont remember the exact directory name (I think you just at it to the root of the EAR). This allows WAR files that are in the EAR to share the jar.
Add the jar to a shared location in your tomcat. $CATALINA_HOME/lib seems like a good spot. This allows all web apps in that instance of tomcat to share the jar.
Other. Other servers provide other means to share a jar.