From: <php...@li...> - 2010-02-19 05:51:30
|
This is indeed a Jetty 7 bug. Jetty doesn't flush the output buffer "res.flushBuffer()" for HTTP/1.0 connections, so the code runs into a wait timeout. I won't change the bridge code to work around this bug. But Jetty 7.0 supports HTTP/1.1 chunked connections: Please add <context-param> <param-name>promiscuous</param-name> <param-value>true</param-value> </context-param> after the </listener> declration of your WEB-INF/web.xml to work around this Jetty 7 bug. Regards, Jost Bökemeier |