I have a service which operates on custom binding -- basicHttp + WS-Addressing (August 2004). Request part work fine but the response is somewhat strange. WCF internals (I could not find out which part of it) is adding a "To" header.
The problem is, this header is marked by WCF as mustUnderstand. The client (which is out of my control) cannot understand this and throws an exception at me. How can I force WCF to stop adding this header? Or at least not mark it as mustUnderstand?
Hint: I tried on IDispatchMessageInspector level but this gets overridden by WCF.