I am having this strange issue with the tomcat 5.5 and tomcat 6.0 servers. I have two web applications which will be installed on tomcat.When tomcat is started these two web applications also get started simultaneously but sometimes one web application fails to initialize because of the init failure in one application another application is getting classnotfoundexception errors while running. In tomcat 7.0 the application is running fine even if the other application failed to initialize.
After some debugging i came to know there is one jar named crystal.jar which is in the web-inf/lib folder of both applications. I have moved the jar to common/lib folder of tomcat then it started working fine. I want to know why it is working fine in tomcat 7.0 not in tomcat 5.x and tomcat 6.x versions. Is there any change in classloading architecture between these versions ?
Thanks
EDIT1: The library was in the location of both the applications WEB-INF\lib directory and they have no dependency with the external DLLS. Just now i read about tomcat 5.5 classloader architecture and came to know that every web application have its own class loader. The libraries in WEB-INF\lib folder and classes folder will be loaded into this classloader. The libraries whichever stored under common directory will be placed into a shared classloader. Then this library should be loaded seperately in seperate class loader of web application. There by even if one web application fails to start other web application should work independently. That's why i felt strange and need to investigate furthur.