Configuring Fiddler to use company network’s proxy?
What worked for me was much more simpler: Rules > Automatically Authenticate
What worked for me was much more simpler: Rules > Automatically Authenticate
This method may avoid the need to hard code or configure proxy credentials, which may be desirable. Put this in your application configuration file – probably app.config. Visual Studio will rename it to yourappname.exe.config on build, and it will end up next to your executable. If you don’t have an application configuration file, just add … Read more
Just add this to config <system.net> <defaultProxy useDefaultCredentials=”true” > </defaultProxy> </system.net>