I'm writing a PC application that communicates with an Http server. This server implementation is buggy and generates mal-formatted responses. It is something I have to deal with.
I'm trying to use Fiddler to see the content of the response, and to adapt my code in consequence. But when Fiddler detects a protocol violation, it makes changes to the response.
Here is a log from fiddler:
11:39:10:1884 Fiddler.Network.ProtocolViolation - [#1] Response does not start with HTTP. Data:200 OKAnd the corresponding response header generated by Fiddler:
HTTP/1.1 500 Fiddler - Bad ResponseDate: Tue, 11 Sep 2018 09:39:10 GMTContent-Type: text/html; charset=UTF-8Connection: closeCache-Control: no-cache, must-revalidateTimestamp: 11:39:10.188I cannot even see the original response, the only one visible in Fiddler in the 'Response' pane is the modified one.
I would like my application to receive the original (mal-formatted) response. Is there any way to configure Fiddler to forward the response exactly as it receives it?