Hi there, My application needs to override some HTTP request methods using the X-HTTP-Method-Override header. And to perform preflight processing with the OPTION request, I'm using the org.apache.cxf.rs.security.cors.CrossOriginResourceSharingFilter. This filter tries (by default) to find the resource method to process the request (findResourceMethod is true by default). But when the request method is overridden (e.g. DELETE is overridden with POST), it tries to find the resource method using the override (POST) instead of the original request method (DELETE), and thus fails in finding the resource method. Is it an issue or am I wrong somewhere?
Regards, Rémi
