Re: CometProcessor and DWR

2008-07-17 Thread Joe Walker
; > also, in your begin event, you can call event.setTimeout if you need a > custom timeout > > Filip > > > > Joe Walker wrote: > >> Thanks for the help Philip. >> >> So I was hoping to use the normal Servlet processing for all requests, and >> th

Re: CometProcessor and DWR

2008-07-17 Thread Joe Walker
Just noticed: s/Philip/Filip/g ;-) Joe. On Thu, Jul 17, 2008 at 10:39 AM, Joe Walker <[EMAIL PROTECTED]> wrote: > > Thanks for the help Philip. > > So I was hoping to use the normal Servlet processing for all requests, and > then do something special to drop a thread w

Re: CometProcessor and DWR

2008-07-17 Thread Joe Walker
11NioProtocol" > or > protocol="org.apache.coyote.http11.Http11AprProtocol" (and the APR and > tcnative libraries in your PATH/LD_LIBRARY_PATH) > > Filip > Joe Walker wrote: > >> Hi, >> >> It looks like servlet spec 3 is wy off. So I'm creating a >

Re: Embedded Tomcat

2008-07-16 Thread Joe Walker
On Wed, Jul 16, 2008 at 1:54 PM, quikpak <[EMAIL PROTECTED]> wrote: > i dont want tomcat mails hereafter because im not a member... You need to read the unsubscribe instructions at the bottom of every mail - > To start

CometProcessor and DWR

2008-07-16 Thread Joe Walker
Hi, It looks like servlet spec 3 is wy off. So I'm creating a implementation of CometProcessor in DWR. I've created a new CometProcessor like this: public class DwrCometProcessor extends DwrServlet implements CometProcessor But the event() method is not called. It just leaps straight to serv

Re: Embedded Tomcat

2008-07-16 Thread Joe Walker
c/config/context.html: > > crossContex: Set to true if you want calls within this application to > ServletContext.getContext() to successfully return a request dispatcher for > other web applications running on this virtual host. Set to false (the > default) in security conscious

Embedded Tomcat

2008-07-15 Thread Joe Walker
Maybe I missed some docs somewhere, but my embedded Tomcat isn't working properly. I doing essentially this: Embedded embedded = new Embedded(); embedded.setCatalinaBase("."); Engine engine = embedded.createEngine(); Host host = embedded.createHost("localhost", "."); engine.addChild(host); C