Im trying to change all my ASP MVC HTTP response headers to have another value by default for implementing Pingback auto-discovery in my blog application.
I believe your problem may be simply that you are trying to modify the headers too late, since you're doing it in OnResultExecuted. Try overriding OnResultExecuting instead.