From: <php...@li...> - 2010-03-08 16:15:39
|
I filled a bug with Eclipse and I was asked: "Greg Wilkins 2010-03-05 02:27:12 EST Can you give a bit more information about the request that is not being flushed. Does the response have Connection:keep-alive set and a Content-Length?" Do you know the answer? I'll update the bug report. Thanks, McKinley On Fri, Feb 19, 2010 at 5:52 AM, <php...@li...> wrote: > 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 > |