It seems that Fiddler will not keep track of what is not working under the same user as Fiddler itself. I would like to track a Windows service that runs under Local System .
Local System
Is it possible?
I did this using Is there a way to configure Fiddler to intercept HTTP calls from a Windows service?
Kodka gave the key to make me move in the right direction. which was still missing is how to configure the proxy..exe.config you need to have a section like the following added: <system.net> <defaultProxy enabled="true"> <proxy proxyaddress="http://127.0.0.1:8888" bypassonlocal="False"/> </defaultProxy> </system.net> Once this was done, the Windows service HTTP traffic started flowing through Fiddler.
Kodka gave the key to make me move in the right direction. which was still missing is how to configure the proxy..exe.config you need to have a section like the following added:
<system.net> <defaultProxy enabled="true"> <proxy proxyaddress="http://127.0.0.1:8888" bypassonlocal="False"/> </defaultProxy> </system.net>
Once this was done, the Windows service HTTP traffic started flowing through Fiddler.
Plz see this article. http://fiddler2.com/blog/blog/2013/01/08/capturing-traffic-from-.net-services-with-fiddler This article will help me.
Source: https://habr.com/ru/post/907343/More articles:NSDateFormatter does not show the time zone abbreviation for "Asia / Kolkata" for the specifier "z" or "zzz", only the GMT offset - iosHow can I use the + = operator in C to demonstrate that the same array index is used to refer to an array? - cIs there any way to limit vline length in ggplot2 - rmy NSDateFormatter only works on iPhone simulator - datePresenting graphs in clojure - regexSmartphone accelerometer gestures algorightms - androidParse $ .extend configuration from data attribute - javascriptPython regular expression matches text between quotation marks - pythonHow to implement read-only ContentProvider? - androidResponse to MPMoviePlayerController notifications during background media playback - iosAll Articles