This is the example from the tomcat user guide. I have the same problem
getting it to work.

2007/5/29, Márton Szabolcs <[EMAIL PROTECTED]>:


Hi!

i set my connector like this.
it should be correct, isnt it?

<Connector port="8080" protocol="
org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" connectionTimeout="20000"
redirectPort="8443" />

<servlet>
   <servlet-name>CometSampleServlet</servlet-name>
   <servlet-class>sample.CometSampleServlet</servlet-class>
</servlet>
<servlet-mapping>
   <servlet-name>CometSampleServlet</servlet-name>
   <url-pattern>/CometSampleServlet</url-pattern>
</servlet-mapping>

public class CometSampleServlet
       extends HttpServlet  implements CometProcessor {

   protected ArrayList<HttpServletResponse> connections =
       new ArrayList<HttpServletResponse>();
   protected MessageSender sender = null;

   /**
    */
   public void event(CometEvent event) throws IOException,
ServletException {
       HttpServletRequest request = event.getHttpServletRequest();

....

but my service method still invoked....
is any settings should take?


this example from:
http://journal.mycom.co.jp/special/2007/tomcat6/014.html
(its japanese, but you could see in the black text areas)

regards,
Szabi

35% kedvezmény a Partvonal Kiadó köteteire - hogy minden olvasó kézhez
kapja a maga könyvét.
http://ad.adverticum.net/b/cl,1,6022,172067,232579/click.prm

Reply via email to