Hello August, $CATALINA_HOME/lib is for libraries that you want to share with all youru webapps, but don't want the container to see (to avoid conflicts with the container)
$CATALINA_HOME/common/lib is for libraries that you want to share with all your webapps, like above, but the container also sees these (potential for conflicts). Notice that the servlet.jar is in this folder because both the container and the webapps need to be able to see that library. Also note that $CATALINA_HOME/server/lib is for libraries that you want only the the container to see. Your webapps have no direct access to this (if any). You will likely not have to mess with this one, just know its purpose. Jake Wednesday, April 10, 2002, 3:33:52 PM, you wrote: AD> Is there a difference between $CATALINA_HOME/lib and AD> $CATALINA_HOME/common/lib ? AD> Does it matter whether something is deployed in one or the other? AD> __________________________________________________ AD> Do You Yahoo!? AD> Yahoo! Tax Center - online filing with TurboTax AD> http://taxes.yahoo.com/ AD> -- AD> To unsubscribe: <mailto:[EMAIL PROTECTED]> AD> For additional commands: <mailto:[EMAIL PROTECTED]> AD> Troubles with the list: <mailto:[EMAIL PROTECTED]> -- Best regards, Jacob mailto:[EMAIL PROTECTED] -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
