Details
Description
I use Jetty HttpClient 'ContentExchange' and 'onResponseComplete' is called whenever '100 Continue' is received and the rest response, real content, from IIS in my case, is ignored and "WARN::Unexpected data received but no request sent" is printed on the console.
Activity
Michael Gorovoy
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Michael Gorovoy [ mgorovoy ] |
Greg Wilkins
made changes -
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Assignee | Michael Gorovoy [ mgorovoy ] | |
| Fix Version/s | 7.6.0 [ 17652 ] | |
| Resolution | Fixed [ 1 ] |
Michael,
I'm not sure that I like the modification to HttpParser to have a special case for the 100 response. The parser should parse entire HTTP messages and a 100 response is a valid HTTP message. It is HttpConnections job to deal with the state resulting from the parser, so it should be the one that handles 100's and I think that head of header and end of message events should still be generated.
Let me see if I can do that....