Hello, I know with ASP.NET there's a global handler Application_EndRequest handler where I could change the Context.Response.StatusCode, and set it to 200 which is my desire.
Now with asmx Web Services, I'm not really sure where I'd put this logic in. I know I'm definitely not interested in writing an ISAPI Filter, and I'm not really running in the ASP.NET environment so HTTPModule is probably useless to me as well.
Any suggestions. Would running this in WCF provide me a simpler mechanism for setting this on a web service?