Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 72731 invoked from network); 10 May 2008 00:36:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 May 2008 00:36:15 -0000 Received: (qmail 28041 invoked by uid 500); 10 May 2008 00:36:02 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 28009 invoked by uid 500); 10 May 2008 00:36:01 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 27998 invoked by uid 99); 10 May 2008 00:36:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 May 2008 17:36:01 -0700 X-ASF-Spam-Status: No, hits=-2.0 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy includes SPF record at spf.trusted-forwarder.org) Received: from [64.18.3.21] (HELO psmtp.com) (64.18.3.21) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 May 2008 00:35:14 +0000 Received: from source ([192.146.101.7]) by exprod8ob111.postini.com ([64.18.7.12]) with SMTP; Fri, 09 May 2008 17:35:26 PDT Received: from lxkssmtp2e.lex.lexmark.com (smtp5b.notes.lexmark.com [157.184.50.112]) by smtp02a.notes.lexmark.com (Postfix) with ESMTP id C071C1380CD for ; Fri, 9 May 2008 20:08:26 -0400 (EDT) In-Reply-To: <48246D05.9090300@asci-systemhaus.de> To: "Tomcat Users List" Subject: Re: JSF implementation selection MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.5 November 30, 2005 Message-ID: From: dhay@lexmark.com Date: Fri, 9 May 2008 20:35:23 -0400 X-MIMETrack: Serialize by Router on smtp5b/Lex/Lexmark(Release 6.5.5|November 30, 2005) at 05/09/2008 20:35:25, Serialize complete at 05/09/2008 20:35:25 Content-Type: multipart/alternative; boundary="=_alternative 00033B5885257445_=" X-Virus-Checked: Checked by ClamAV on apache.org --=_alternative 00033B5885257445_= Content-Type: text/plain; charset="US-ASCII" We are running Tomcat 5.5 using the SSO Valve. We are hitting a strange situation, however, if we set the session timeout on our context to be less than the default 30 minutes eg 5 mins. The valve has the following check: if (((session.getMaxInactiveInterval() > 0) && (System.currentTimeMillis() - session.getLastAccessedTimeInternal() < session.getMaxInactiveInterval() * 1000))) { // Logged out, kill em all } else { // Timed out, just stop tracking } However, from the debug we added, session.getMaxInactiveInterval() is returning the default 30, not the 5 minute timeout of the context the session was associated with. Can anyone shed any light on the situation? cheers, David --=_alternative 00033B5885257445_=--