Fiddler Docs adds this exact issue.
There are two parts to this.
1 Install the MVC application to use fiddler as a proxy server or in the web.config file
<configuration> <system.net> <defaultProxy> <proxy bypassonlocal="false" usesystemdefault="true" /> </defaultProxy> </system.net> </configuration>
Or in the code: GlobalProxySelection.Select = new WebProxy("127.0.0.1", 8888);
2 Link to api by machine name instead of localhost. This is due to the fact that .net will not use a proxy by default when accessing something through localhost.
Jon p source share