Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 71456 invoked from network); 30 Jul 2010 03:49:37 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 30 Jul 2010 03:49:37 -0000 Received: (qmail 81068 invoked by uid 500); 30 Jul 2010 03:49:36 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 80538 invoked by uid 500); 30 Jul 2010 03:49:33 -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 80529 invoked by uid 99); 30 Jul 2010 03:49:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jul 2010 03:49:32 +0000 X-ASF-Spam-Status: No, hits=-1996.4 required=10.0 tests=ALL_TRUSTED,FS_REPLICA,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.9] (HELO minotaur.apache.org) (140.211.11.9) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 30 Jul 2010 03:49:30 +0000 Received: (qmail 71415 invoked by uid 99); 30 Jul 2010 03:49:08 -0000 Received: from localhost.apache.org (HELO mail-vw0-f45.google.com) (127.0.0.1) (smtp-auth username kfujino, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jul 2010 03:49:08 +0000 Received: by vws19 with SMTP id 19so861222vws.18 for ; Thu, 29 Jul 2010 20:49:07 -0700 (PDT) MIME-Version: 1.0 Received: by 10.220.88.84 with SMTP id z20mr736714vcl.92.1280461746993; Thu, 29 Jul 2010 20:49:06 -0700 (PDT) Received: by 10.220.171.5 with HTTP; Thu, 29 Jul 2010 20:49:06 -0700 (PDT) Date: Fri, 30 Jul 2010 12:49:06 +0900 Message-ID: Subject: [PROPOSAL] remove domainReplication propety From: Keiichi Fujino To: Tomcat Developers List Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi. SimpleTcpCluster#sendClusterDomain called when domainReplication is true is as follows now. ===SimpleTcpCluster#sendClusterDomain=== public void sendClusterDomain(ClusterMessage msg) { send(msg,null); } === === the msg is transmitted to all cluster members. domainReplication does not work correctly. Tomcat7 and Tomcat6 have org.apache.catalina.tribes.group.interceptors.DomainFilterInterceptor. If DomainFilterInterceptor is used, session can be sent only to the same domain. Is DomainFilterInterceptor used instead of domainReplication? Or, is SimpleTcpCluster#sendClusterDomain correctly fixed? I intend to remove domainReplication property in Tomcat7.0 and domainReplication property is changed to "Deprecated" in Tomcat6.0. Any objections or advice? -- Keiichi.Fujino --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org