Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 51116 invoked from network); 2 Jan 2009 14:53:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Jan 2009 14:53:58 -0000 Received: (qmail 60392 invoked by uid 500); 2 Jan 2009 14:53:51 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 60339 invoked by uid 500); 2 Jan 2009 14:53:51 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 60328 invoked by uid 99); 2 Jan 2009 14:53:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jan 2009 06:53:51 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jan 2009 14:53:49 +0000 Received: by brutus.apache.org (Postfix, from userid 33) id A5732234C4A8; Fri, 2 Jan 2009 06:53:28 -0800 (PST) From: bugzilla@apache.org To: dev@tomcat.apache.org Subject: DO NOT REPLY [Bug 46464] New: Serialisation issues in catalina X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: newchanged X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Tomcat 6 X-Bugzilla-Component: Catalina X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: sebb@apache.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: dev@tomcat.apache.org X-Bugzilla-Target-Milestone: default X-Bugzilla-Changed-Fields: Message-ID: Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Fri, 2 Jan 2009 06:53:28 -0800 (PST) X-Virus-Checked: Checked by ClamAV on apache.org https://issues.apache.org/bugzilla/show_bug.cgi?id=46464 Summary: Serialisation issues in catalina Product: Tomcat 6 Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: sebb@apache.org The class org.apache.catalina.session.StandardSession defines the methods: protected void readObject(ObjectInputStream stream) protected void writeObject(ObjectOutputStream stream) But since the methods aren't declared private, they will be silently ignored by the serialization/deserialization API. == Furthermore, perhaps the methods should call defaultReadObject() / defaultWriteObject() respectively. The defaultxxxObject() methods are not called by the corresponding methods in the class org.apache.catalina.session.DeltaSession == The DeltaSession class additionally defines protected versions of readObject()/writeObject(). These should probably be removed or renamed to avoid confusion with the Java Serialisation API. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org