Chenjp commented on PR #772:
URL: https://github.com/apache/tomcat/pull/772#issuecomment-2453765273
Commit ```c65d66d``` has prevented most of unexpected cases.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
U
Chenjp opened a new pull request, #773:
URL: https://github.com/apache/tomcat/pull/773
Modify unused webdav status codes:
* 418 is sc of a 1 April Rfc. (418 I'm a teapot).
* 422 (Unprocessable Content) Comply with
[Rfc9110](https://httpwg.org/specs/rfc9110.html#changes.from.rfc.7231)
This is an automated email from the ASF dual-hosted git repository.
kkolinko pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new ed86c51195 Changelog. - Correct a typo in sect
This is an automated email from the ASF dual-hosted git repository.
kkolinko pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new bd74dfc2ac Changelog. - Correct a typo in sectio
https://bz.apache.org/bugzilla/show_bug.cgi?id=69379
--- Comment #6 from m...@jfrog.com ---
It is as simple as this:
On Tomcat 9.x.x and Jersey, create an empty resource accepting HEAD requests:
@HEAD
@Path("/test/head")
public Response testHead() {
return Response.ok().build();
}
curl --hea