I am trying to develop a cometd powered component in Wicket , which runs in
resin-4.0.9
I follow wicketstuff-push's sample code , but the listening component cannot
get the event .
I wonder whether resin compatible with Jetty's ContinuationCometdServlet ?

My config :

web.xml :
    <servlet>
        <servlet-name>cometd</servlet-name>

 
<servlet-class>org.mortbay.cometd.continuation.ContinuationCometdServlet</servlet-class>
        <init-param>
            <param-name>timeout</param-name>
            <param-value>60000</param-value>
        </init-param>
        <init-param>
            <param-name>loglevel</param-name>
            <param-value>2</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>cometd</servlet-name>
        <url-pattern>/cometd/*</url-pattern>
    </servlet-mapping>


When using ContinuationCometdServlet , does that mean I have to bind my
webapp to jetty's server ?
_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to