Details
Description
Send empty chunked request such:
"GET /R1 HTTP/1.1\n"+
"Host: localhost\n"+
"Transfer-Encoding: chunked\n"+
"Content-Type: text/plain\n"+
"\015\012"+
"0;\015\012\015\012"
This cause Jetty does not call servlet and does not return response.
Can be verified in HttpConnectionTest:
....
response=connector.getResponses("GET /R1 HTTP/1.1\n"+
"Host: localhost\n"+
"Transfer-Encoding: chunked\n"+
"Content-Type: text/plain\n"+
"\015\012"+
"0\015\012\015\012");
This is due to the delayed handling mechanism in Jetty.
A fix has been committed and a release will be following shortly.
thanks!