Re: tomcat is looking for a class I don't use anymore

2007-08-08 Thread Filip Hanik - Dev Lists
make sure you delete all the .ser files, that is where your session info is stored even stored during a restart Filip Mastrorillo Laurence wrote: Hi everybody, I am having a problem with an old class no longer in used in my application. I am using tomcat 5.0.18 with jdk 1.5 from ibm. I undepl

Re: tomcat is looking for a class I don't use anymore

2007-08-08 Thread Mastrorillo Laurence
THANKS PETER, I found out how to delete tomcat sessions that persists after un-deployement. That did it !! No more exceptions ! Peter Crowther a écrit : From: Mastrorillo Laurence 2007-08-08 12:04:12 fileStore[/]: java.lang.ClassNotFoundException: [...] at org.apache.catal

RE: tomcat is looking for a class I don't use anymore

2007-08-08 Thread Peter Crowther
> From: Mastrorillo Laurence > 2007-08-08 12:04:12 fileStore[/]: java.lang.ClassNotFoundException: [...] > at > org.apache.catalina.session.FileStore.load(FileStore.java:336) I suspect Tomcat persisted its session state to disk at shutdown, and is trying to re-read those sessions. Inst

Re: tomcat is looking for a class I don't use anymore

2007-08-08 Thread Mastrorillo Laurence
I did delete all my .class. I can affirm it is not referenced anywhere in my code anymore. In fact, i deleted all my application and deployed the new one from the entire .war. Here is the stack trace : 2007-08-08 12:04:12 fileStore[/]: java.lang.ClassNotFoundException: org.medias.amma.sgbd.Jeu

Re: tomcat is looking for a class I don't use anymore

2007-08-08 Thread David Delbecq
Did you delete all your .class of your application and rebuild them after removing myclass.java? It could be another class was referencing that class and was not recompiled, and as such can not be loaded anymore because reference another non existing class. The stacktrace of Exception could be us

tomcat is looking for a class I don't use anymore

2007-08-08 Thread Mastrorillo Laurence
Hi everybody, I am having a problem with an old class no longer in used in my application. I am using tomcat 5.0.18 with jdk 1.5 from ibm. I undeployed the application, suppressed the class and every references to it (I am sure of that!), and then deployed again in tomcat. And in the catalina.out