I was successfully running an web application on weblogic 10.3.2.

But when I redeploy on console or hotdeploy (by changing the class in web-inf/classes), it throws the classcastexception like below.

    java.lang.ClassCastException: a.b.X509Certificate cannot be cast to a.b.X509Certificate

I looked into below codes and their ClassLoaders were different after redeploy.

The loader1 has changed after redeploy while loader2 remained same. I think loader2 also needs to be changed.

    List l = path.getCertificates();
    ClassLoader loader1 = l.get(0).getClass().getClassLoader();
    ClassLoader loader2 = tradesign.pki.pkix.X509Certificate.class.getClassLoader();

I also found that if there were no session, redeploy worked fine.

Some says, the class must be serialized.

But the X509Certificate is already serialized. Setting below in weblog.xml also works.

<servlet-reload-check-secs>-1</servlet-reload-check-secs>

I appreciate any help.

link|improve this question

67% accept rate
1  
What are the classloaders types? What is the full stack trace (not just the last line)? – doublep Nov 4 '11 at 17:20
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.