ServletContext servletContext = this.getServletContext();
// get the bayeux server and register the bayeux ack extension.
BayeuxServer bayeux = (BayeuxServer) servletContext
.getAttribute(BayeuxServer.ATTRIBUTE);
bayeux.addExtension(new AcknowledgedMessagesExtension());
// parse the coweb configuration file for this application.
ServletConfig config = this.getServletConfig();
Map<String, Object> cowebConfig = null;
try {