https://bz.apache.org/bugzilla/show_bug.cgi?id=63855

--- Comment #14 from Konstantin J. Chernov <k.j.cher...@gmail.com> ---
Yann, unfortunately, it's not working :(
And it's not sending 100-Continue at all.

{code}
POST /service/endpoint HTTP/1.1
Host: host:port
Content-Type: text/plain
Content-Length: 1
Expect: 100-Continue

<wait_for_100_continue>1
HTTP/1.1 415 Unsupported Media Type
Date: Sat, 19 Oct 2019 15:04:44 GMT
Server: Apache-Coyote/1.1
Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
Content-Length: 0
{code}

With Proxy100Continue off (I've finally read the new docs and found this magic
switch!) and with the previous version of the patch:
{code}
POST /service/endpoint HTTP/1.1
Host: host:port
Content-Type: text/plain
Content-Length: 1
Expect: 100-Continue

HTTP/1.1 100 Continue

1
HTTP/1.1 415 Unsupported Media Type
Date: Sat, 19 Oct 2019 15:08:53 GMT
Server: Apache-Coyote/1.1
Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
Content-Length: 0
{code}

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org

Reply via email to