Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 23299 invoked from network); 15 Nov 2007 17:54:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Nov 2007 17:54:54 -0000 Received: (qmail 74051 invoked by uid 500); 15 Nov 2007 17:54:32 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 73125 invoked by uid 500); 15 Nov 2007 17:54:30 -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 73113 invoked by uid 99); 15 Nov 2007 17:54:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Nov 2007 09:54:30 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of kristin.coles@gmail.com designates 209.85.146.183 as permitted sender) Received: from [209.85.146.183] (HELO wa-out-1112.google.com) (209.85.146.183) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Nov 2007 17:54:20 +0000 Received: by wa-out-1112.google.com with SMTP id m38so708114waf for ; Thu, 15 Nov 2007 09:54:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=BixdpsnsXVyE4XORmI/8WGRZnHgaOv3uonf8sYijTgw=; b=FGTLGyFdcaNhyXSY23JT+vuZeBqmnptaZ6u92UjISeN6/mWHSFC8BXwkxHJmoW4MPTgzFzc05ZsC202hew+ATeKxwrL2oWq4MEd3JorDg+bnfIso9Vo8jateyxEmosyFN0nsy4dF61kaWjU1sALOqWXbpUiHwmZ4ZlJBVMzon98= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=pABZw0SFakMeJBd/+hBdUp1OSnHtrwTt80wu7XLYsPUNccnbct50rl/65JNyd1dZslAmJxzTOWHzcSnVGq7/3PHzE2ag9pVvUKBKdZbY5181LwkNGDn9bCUSpTqGQbXr16wXElV0QGw2pdw5jZrgyFz4h4lueO9A0fb3PDAUYLA= Received: by 10.114.88.1 with SMTP id l1mr965858wab.1195149254266; Thu, 15 Nov 2007 09:54:14 -0800 (PST) Received: by 10.114.95.4 with HTTP; Thu, 15 Nov 2007 09:54:14 -0800 (PST) Message-ID: <1849eed90711150954k19b9afbfp22e0729b9efbb500@mail.gmail.com> Date: Thu, 15 Nov 2007 10:54:14 -0700 From: "Kristin Coles" To: "Tomcat Users List" Subject: Re: How to disable Session Persistence in Tomcat 5.5.9 In-Reply-To: <2828B04F0113CD468E6D1D51DF4362A403FD5CD3@USEA-EXCH2.na.uis.unisys.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1849eed90711141622s6a2e45b2x5fede91d77f885@mail.gmail.com> <1849eed90711141742q2860a16cr97486d45a8235431@mail.gmail.com> <2828B04F0113CD468E6D1D51DF4362A403FD5CD3@USEA-EXCH2.na.uis.unisys.com> X-Virus-Checked: Checked by ClamAV on apache.org Hey Charles, Thank you very much for the detailed explanation. I did the following to disable session persistence, but..... #Tomcat\conf\server.xml I know that PersitentManager is not advisable but I got the following message in Tomcat logs as a proof that it did disable session pesistence.... [org.apache.catalina.session.PersistentManagerBase] : No Store configured, persistence disabled HOWEVER, when I restart Tomcat and go to https://kristin/login, I still get the message "You have successfully logged into the Central Authentication Service."! I am completely stumped! Tomcat gurus please advise! Please note that CAS is an application based on Spring framework. Regards, Kristin PS: Do you guys think this is a CAS issue rather than a Tomcat one? PPS: Few other things that I tried are... 1. Use StandardManager with pathname="" 2. Removed the context and manager elements from server.xml and created an individual context.xml file under Tomcat\Catalina\kristin directory. On Nov 14, 2007 7:31 PM, Caldarale, Charles R wrote: > > From: "Kristin Coles" > > Subject: How to disable Session Persistence in Tomcat 5.5.9 > > > > # Tomcat\conf\server.xml (version 1) > > > > > The above is incorrect; your appBase should be "webapps", and docBase > should be "cas". What you've specified is illegal, but is not always > detected. > > > > As the doc states, the PersistentManager is not ready for prime time - > you really don't want to mess with it. > > By specifying a element inside the , you override the > one in conf/context.xml, thereby rendering your previous configuration > useless. > > > # Tomcat\conf\server.xml (version 2) > > > > > Same comment as above. > > > > debug="0" pathname =""> > > Is that a typo, or do you really have an extra space after pathname? > > Note that placing elements in server.xml is strongly > discouraged these days; you might want to consider one of the standard > locations, and get rid of the path and docBase attributes. If you want > cas to be the default app, simply name it ROOT. > > Fix the obvious errors, and then let's see what happens. > > - Chuck > > > THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY > MATERIAL and is thus for use only by the intended recipient. If you > received this in error, please contact the sender and delete the e-mail > and its attachments from all computers. > > > --------------------------------------------------------------------- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > For additional commands, e-mail: users-help@tomcat.apache.org > > --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org