You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CometD servlet has been adapted to run under the Tapestry filter so it is not necessary to configure it in web.xml. Any init-params for the servlet can be contributed to the "CometdHttpServletRequestFilter". For the list of available configuration options, see the CometD documentation here
AppModule.java
publicstaticvoidcontributeCometdHttpServletRequestFilter(MappedConfiguration<String, Object> config)
{
// add init-params for the Cometd servlet hereconfig.add("logLevel", "3");
config.add("timeout", "30000");
}