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:
<compilation>
<buildProviders>
<remove extension=".svc" />
</buildProviders>
</compilation>
More information on MSDN.
Adding this as a proper answer.
You could simply not use the .svc extension... just use anything else that works, and tell the client the address. There may be additional goo associated with that particular exntension (dynamic compilation, etc).