Return-Path: X-Original-To: apmail-shiro-user-archive@www.apache.org Delivered-To: apmail-shiro-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1211D7710 for ; Fri, 23 Sep 2011 00:31:59 +0000 (UTC) Received: (qmail 97022 invoked by uid 500); 23 Sep 2011 00:31:58 -0000 Delivered-To: apmail-shiro-user-archive@shiro.apache.org Received: (qmail 97009 invoked by uid 500); 23 Sep 2011 00:31:58 -0000 Mailing-List: contact user-help@shiro.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@shiro.apache.org Delivered-To: mailing list user@shiro.apache.org Received: (qmail 96999 invoked by uid 99); 23 Sep 2011 00:31:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Sep 2011 00:31:58 +0000 X-ASF-Spam-Status: No, hits=2.0 required=5.0 tests=SPF_NEUTRAL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [216.139.236.26] (HELO sam.nabble.com) (216.139.236.26) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Sep 2011 00:31:53 +0000 Received: from jim.nabble.com ([192.168.236.80]) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1R6tfv-00040g-Gp for user@shiro.apache.org; Thu, 22 Sep 2011 17:31:31 -0700 Date: Thu, 22 Sep 2011 17:31:31 -0700 (PDT) From: dan To: user@shiro.apache.org Message-ID: <1316737891503-6822446.post@n2.nabble.com> In-Reply-To: <1316713448165-6821244.post@n2.nabble.com> References: <1316133502450-6799265.post@n2.nabble.com> <1316565083621-6814424.post@n2.nabble.com> <1316710792437-6821089.post@n2.nabble.com> <1316713448165-6821244.post@n2.nabble.com> Subject: Re: Using native web sessions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Here's another clue about JspServlet. Looking through the tomcat sources, which includes Jasper, I found that they load JspServlet before anything else. Here's from their org.apache.catalina.core.StandardWrapper class: /** * Return the load-on-startup order value (negative value means * load on first call). */ public int getLoadOnStartup() { if (isJspServlet && loadOnStartup < 0) { /* * JspServlet must always be preloaded, because its instance is * used during registerJMX (when registering the JSP * monitoring mbean) */ return Integer.MAX_VALUE; } else { return (this.loadOnStartup); } } I didn't see anything about this in the list. Perhaps I'm running across this because I'm the first one trying it with native sessions? Dan -- View this message in context: http://shiro-user.582556.n2.nabble.com/Using-native-web-sessions-tp6799265p6822446.html Sent from the Shiro User mailing list archive at Nabble.com.