DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5229>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5229

Session cannot unbind if using DistributedManager

           Summary: Session cannot unbind if using DistributedManager
           Product: Tomcat 4
           Version: 4.0.1 Final
          Platform: All
        OS/Version: Other
            Status: NEW
          Severity: Blocker
          Priority: Other
         Component: Catalina
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Hi
If you use StandardCluster and DistributedManager in the server.xml, the 
HttpSessionBindingListener fails to get called. This is because when the 
session is replicated, the reference to the old object is lost. Hence, no 
events:

<Cluster className="org.apache.catalina.cluster.StandardCluster"
    multicastPort="6789"
    multicastAddress="228.5.6.7"
    checkInterval="5"
    debug="99"/>
        <Context path="/coredev" docBase="e:\opensource\e3\dev\www\core\webapp" 
debug="0" reloadable="true"> 
          <Manager className="org.apache.catalina.session.DistributedManager"
              debug="3"
              saveOnRestart="true"
              maxActiveSessions="-1"
              minIdleSwap="-1"
              maxIdleSwap="-1"
              maxIdleBackup="-1">
                <Store className="org.apache.catalina.session.FileStore"/>
          </Manager>
        </Context>

Regards
Keith

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to