How to enable Jetty to support cometd/reverse ajax while let it listen to port 80?
- by janetsmith
I would like to use cometd / reverse ajax capability of Jetty 7. I tried to configure it so it listen to port 80, instead of 8080.
However, according to http://jetty.mortbay.org/jetty5/faq/faq%5Fs%5F200-General%5Ft%5Fapache.html , 
  Apache can be configured as a HTTP/1.1
  proxy to pass selected request to the
  Jetty using the HTTP/1.1 protocol.
  This is simple to configure and use,
  but current versions of the apache
  mod_proxy do not support persistent
  connections.
As far as I know, the reverse ajax in jetty is depending on continuation (I guess it is persistent connection). So how to let jetty support reverse ajax, while coexist with apache server?
Thanks.