Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 29640 invoked from network); 27 May 2008 22:32:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 May 2008 22:32:41 -0000 Received: (qmail 80145 invoked by uid 500); 27 May 2008 22:32:32 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 79136 invoked by uid 500); 27 May 2008 22:32: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 79125 invoked by uid 99); 27 May 2008 22:32:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 May 2008 15:32:30 -0700 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 alex@planet-barclay.com designates 69.17.115.243 as permitted sender) Received: from [69.17.115.243] (HELO wibblejr.planet-barclay.com) (69.17.115.243) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 27 May 2008 22:31:42 +0000 Received: (qmail 26489 invoked from network); 27 May 2008 22:25:35 -0000 Received: from ip67-88-219-227.z219-88-67.customer.algx.net (HELO Alex-Barclays-Computer.local) (67.88.219.227) by softdnserror with SMTP; 27 May 2008 22:25:35 -0000 Message-ID: <483C8A59.2090908@planet-barclay.com> Date: Tue, 27 May 2008 15:25:29 -0700 From: Alex Barclay User-Agent: Thunderbird 2.0.0.14 (Macintosh/20080421) MIME-Version: 1.0 To: Tomcat Users List Subject: Re: Tomcat Comet Question References: <74DFE4F68173F94787693F06E792A8F3BD51D0@exch1.ad.getmedium.com> In-Reply-To: <74DFE4F68173F94787693F06E792A8F3BD51D0@exch1.ad.getmedium.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Adam Kaupisch wrote: > I am having trouble getting Comet to work and was hoping someone knows > what my problem is... > > > > I am running 6.0.13 on windows XP (yea, I need to change to linux, I > know)...anyway, I went through getting the APR setup and I believe I > have done so...based on when I start tomcat up, I get this message: > > May 27, 2008 2:45:23 PM org.apache.catalina.core.AprLifecycleListener > init > > INFO: Loaded Apache Tomcat Native library 1.1.12. > > May 27, 2008 2:45:23 PM org.apache.catalina.core.AprLifecycleListener > init > > INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters > [false], random [true]. > > May 27, 2008 2:45:24 PM org.apache.coyote.http11.Http11NioProtocol init > > INFO: Initializing Coyote HTTP/1.1 on http-8080 > > May 27, 2008 2:45:24 PM org.apache.coyote.http11.Http11Protocol init > > INFO: Initializing Coyote HTTP/1.1 on http-8081 > > May 27, 2008 2:45:24 PM org.apache.coyote.http11.Http11NioProtocol init > > INFO: Initializing Coyote HTTP/1.1 on http-8443 > > May 27, 2008 2:45:24 PM org.apache.catalina.startup.Catalina load > > INFO: Initialization processed in 1741 ms > > > > I have a servlet that sits behind a filter. When I try to access it, it > calls doFilter(...) instead of doFilterEvent(...). Is there something > I'm missing in my config? I'm poking around blindly, so I'd be happy if > anyone can point me in the right direction. > > > > Did you remember to have your servlet implement CometProcessor? Your messages don't look quite right. On Linux my startup gives... May 23, 2008 3:41:28 PM org.apache.catalina.core.AprLifecycleListener init INFO: Loaded APR based Apache Tomcat Native library 1.1.12. May 23, 2008 3:41:28 PM org.apache.catalina.core.AprLifecycleListener init INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true]. May 23, 2008 3:41:28 PM org.apache.coyote.http11.Http11AprProtocol init INFO: Initializing Coyote HTTP/1.1 on http-8080 Note that I initialized an Http11AprProtocol, you initialized a regular Http11Protocol. Did you explicitly define this in the server.xml? Alex. --------------------------------------------------------------------- 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