views:

69

answers:

1

I need jax-ws runtime on Tomcat.

Is it ok to put "jax-ws/lib/*" to "tomcat/lib" ?

Does one need any axis, axis2 libs in tomcat if he puts jax-ws/lib into tomcat/lib?

At least, any of axis*.jar are needed for Tomcat to function properly?

+1  A: 

As a general rule you should avoid putting jar files in the tomcat/lib folder. Tomcat doesn't need jar files other than those originally to be found in its lib directory.

If you need a jar file you should put it in WEB-INF/lib folder of your application. This will save you a lot of headaches with jars versioning.

kgiannakakis