I\'m trying to create a custom ASP.NET HttpHandler to work with any requests to a WCF web services (*.svc) to return a simple predefined SOAP message.
However, after
In your web.config you need to add the following so that IIS will forward the response through to your handler:
More information on MSDN.
Adding this as a proper answer.