I have already working ASP.net Web API (.Net Framework 4.6.1) Application, And already have some "DelegatingHandler"s and "ActionFilterAttribute"s working on it to handle Authentication, and Validation filters.
I need to change Some error Messages like 404 default message :
No HTTP resource was found that matches the request URI 'https://example.com/api/someWrongUrlAction'.
So, I read about OWIN middleware, but I'm afraid of using it, and need to know will it affect any other working functionality or hosting settings? will it affect the already exists "DelegatingHandler" MessageHandlers ? or "ActionFilterAttribute" Filters?
Note: I need to use the OWIN middleware only for that purpose, but I'll keep hosting in IIS as it is.