https://issues.apache.org/bugzilla/show_bug.cgi?id=44833

           Summary: DeltaSession Externalization Problem
           Product: Tomcat 6
           Version: 6.0.16
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Cluster
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Location:

class
  org.apache.catalina.ha.session.DeltaManager

methods
  deserializeSessions()
        ObjectInputStream ois = null;
        ...
        DeltaSession session = (DeltaSession) createEmptySession();
        session.readObjectData(ois);
and
  serializeSessions()
        ObjectOutputStream oos = null;
        ...
        ((DeltaSession)currentSessions[i]).writeObjectData(oos);                

Description:

In both cases methods StandardSession.readObjectData(ObjectInputStream) and
StandardSession.writeObjectData(ObjectOutputStream) will be invoked instead of
expected invokation of methods DeltaManager.readObjectData(ObjectInput) and
DeltaManager.writeObjectData(ObjectOutput).


-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to