Re: Setting up Comet on Tomcat 6

2008-08-28 Thread drgb88
ceived event " + >> cometEvent.getEventType().toString()); >> } >> >> protected void service(HttpServletRequest request, HttpServletResponse >> response) throws ServletException, IOException >> { >> >&g

RE: Setting up Comet on Tomcat 6

2008-08-05 Thread Talal Rabaa
ssage- From: Filip Hanik - Dev Lists [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 2:37 PM To: Tomcat Users List Subject: Re: Setting up Comet on Tomcat 6 I took your servlet, compiled it, put it in WEB-INF/classes/testing/comet then in web.xml I put test

Re: Setting up Comet on Tomcat 6

2008-07-31 Thread Filip Hanik - Dev Lists
ERROR, "You must be using the APR or NIO connector to get the event method called."); } } -Original Message- From: Filip Hanik - Dev Lists [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2008 1:28 PM To: Tomcat Users List Subject: Re: Setting up Comet on Tomcat 6 s

RE: Setting up Comet on Tomcat 6

2008-07-31 Thread Talal Rabaa
;You must be using the APR or NIO connector to get the event method called."); } } -Original Message- From: Filip Hanik - Dev Lists [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2008 1:28 PM To: Tomcat Users List Subjec

Re: Setting up Comet on Tomcat 6

2008-07-30 Thread Filip Hanik - Dev Lists
send us your test class Filip Talal Rabaa wrote: Thanks for your reply! Yes, it does implement the CometProcessor method. It's just a simple shell class displaying messages to System.out for event(), service(), init() and the constructor. My hope is to verify Tomcat is running with Comet prop

Re: Setting up Comet on Tomcat 6

2008-07-30 Thread Talal Rabaa
Thanks for your reply! Yes, it does implement the CometProcessor method. It's just a simple shell class displaying messages to System.out for event(), service(), init() and the constructor. My hope is to verify Tomcat is running with Comet properly before I attempt to put any meat into this class

Re: Setting up Comet on Tomcat 6

2008-07-30 Thread Filip Hanik - Dev Lists
does your servlet iimplement the CometProcessor interface? Filip Talal Rabaa wrote: Hello! I apologize if this question has been asked many times before. I've searched quite a bit for concrete answers on how to setup Comet but I'm having no luck. From what I understand, all that is needed

Setting up Comet on Tomcat 6

2008-07-29 Thread Talal Rabaa
Hello! I apologize if this question has been asked many times before. I've searched quite a bit for concrete answers on how to setup Comet but I'm having no luck. From what I understand, all that is needed to successfully set it up is to replace the default connector with either NIO or APR.