I have developed a java application which run’s perfectly in local server. But When I upload it on a solaris server it gives the error were not found where indicated: lib/ojdbc6.jar lib/jstl-1.2.jar lib/commons-codec-1.6.jar ; ignoring and continuing|#]
How can I fix this problem ?
Thanks
Enamul
This error means that your application is looking for these jars in the classpath and cannot find them, you have two options:
copy these jars into the Glassfish libs – this is the easiest option, but note that this will cause all other applications running on the server to recognize these jars as well. Usually it is not a problem but it might be if there are other applications that are working with other versions of these jars.
Pack your jar with all its dependencies.