Hello, I am trying to build a large file upload application using https://tus.io/. The protocol requires use of HTTP PATCH requests. When I run the servlet in Jetty, it works just fine. When I run the servlet in Wildfly (our production server), I get the following error returned to the client: "Method PATCH is not defined in RFC 2068 and is not supported by the Servlet API". Is there some configuration setting needed to allow Wildfly to handle PATCH requests?
Thanks.