Re: Anybody know what is this situation?

2009-07-17 Thread Michał Letyński
I got the same error. It's also totally random. But i have a bit different situation. In my page i have panel, inside this panel i got panel which is anonymous class and inside of this panel is InlineFrame with Page. Any clues how to solve this ? Jeremy Thomerson pisze: Generally unexplained

Re: Anybody know what is this situation?

2009-07-03 Thread bgooren
I got the same error today, seems totally random. The only possible explanation I have is that maybe the subclass (LoginPage$1 in your case) stores a PageHolder class instead of the actual page (LoginPage) when serialized, and when LoginPage$1 is deserialized, the PageHolder retrieves/points to

Re: Anybody know what is this situation?

2009-07-03 Thread Jeremy Thomerson
Generally unexplained class issues like this are because the same class gets loaded a second time from a different class loader. I once had it throwing a ClassCastException that ClassA != ClassA. Hard to track down, though. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 3,

Re: Anybody know what is this situation?

2009-05-18 Thread Serkan Camurcuoglu
In my experience such unexpected classcastexceptions may occur if the same class is loaded twice by different classloaders.. Check whether the LoginPage class exists in both WEB-INF/classes and some other jar in your classpath.. Martin Makundi wrote: Anybody know what is this situation?

Re: Anybody know what is this situation?

2009-05-18 Thread Martin Makundi
I found only one instance. Does it matter that it is a random exception (i.e., I saw it first time today and the app has been running for a long time)? ** Martin 2009/5/18 Serkan Camurcuoglu serkan.camurcuo...@telenity.com: In my experience such unexpected classcastexceptions may occur if the