How to enable Jetty to support cometd/reverse ajax while let it listen to port 80?
Posted
by
janetsmith
on Server Fault
See other posts from Server Fault
or by janetsmith
Published on 2009-11-11T02:41:14Z
Indexed on
2012/09/19
21:40 UTC
Read the original article
Hit count: 253
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.
© Server Fault or respective owner