DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=36113>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=36113 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|WORKSFORME | ------- Additional Comments From [EMAIL PROTECTED] 2005-09-08 13:27 ------- (In reply to comment #4) > Hi, I tried to reproduce the problem using a simple program but I did fail > (boolean seems to get converted to java.lang.Boolean in any case I tried). > The problem is occurring using a third party library and I am not sure what > these guys are doing to contain primitive types in the session. This > application does not work without a very big environment, so it is not > possible > for me to provide a war to test the behaviour. > > The proble also occurs in Replication, where the same bug exists. Ok, I understand (to some extent: it's weird). One of the issues is that I don't feel confident cut & pasting Sun's code. Can you test to see if this change works fine with your webapp: public Class resolveClass(ObjectStreamClass classDesc) throws ClassNotFoundException, IOException { try { return Class.forName(classDesc.getName(), false, classLoader); } catch (ClassNotFoundException e) { return super.resolveClass(classDesc); } } ? -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]