;
> 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
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
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
>
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
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
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
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