Is there a way to configure Fiddler to intercept HTTP calls from a Windows service?

前端 未结 5 1310
梦如初夏
梦如初夏 2021-02-01 06:44

We\'re in the process of replacing an old (5+ years) Windows service application built with VS2005 that makes an HTTP GET call. There are several things that make this difficul

5条回答
  •  北海茫月
    2021-02-01 07:16

    Note: Important: Regardless of other settings, .NET will always bypass the Fiddler proxy for URLs containing localhost. So, rather than using localhost, change your code to refer to the machine name. For instance:

    This URL will not appear in Fiddler:

    http://localhost/X509SignCodeService/X509SigningService.asmx This URL will appear in Fiddler:

提交回复
热议问题