In a reverse of the usual request of how do I get Fiddler to capture requests to localhost
, how do I stop it getting specific ports?
Since installing the IE 9 RC, I'm getting loads of requests to Mesh appearing ...
http://localhost:2048/V4.0i/Sync/Devices/SDI6BHE6YYAHMR67S32S4MTROU/Endpoints
I've tried adding locahost:2048 to the Fiddler Filters / Hide the following Hosts, but that's not working
If you're using FireFox, Fiddler's add-on will automatically configure it to not ignore localhost when capturing traffic. If traffic from localhost is still (or suddenly) not appearing, try disabling and re-enabling traffic capture from Fiddler to goad the add-on into fixing the proxy configuration.
The Host Filter dropdown enables you to flag or exclude displaying of traffic to specified domain names. Use the wildcard symbol to adjust your filter, for example: To display traffic from subdomains of fiddler2.com: Select Show only the following Hosts.
Fiddler listens on port—Defines the port that Fiddler Everywhere uses to listen for web traffic. The default port is 8866. Act as a system proxy on startup—Controls whether Fiddler Everywhere will be registered as the system proxy during startup.
Sussed it ... in Fiddler, open the custom rules with Ctrl+R
and add to the OnBeforeRequest
...
if (oSession.host=="localhost:2048"){
oSession["ui-hide"] = "true";
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With