Posts

Showing posts with the label Fiddler

Debugging Windows 8.1 Apps

Image
Visual Studio 2013 has the ability to quickly debug a Windows 8.1 app even if it’s not your app. Fiddler is a free tool for HTTP debugging of Windows 8.1 Apps Notification after installing Fiddler on Windows 8.1 To enable traffic capture of even third party apps, the Win8 Config button has to be clicked.

Simulate Modem speeds with Fiddler

Update (0-Jan-2015): Chrome Developer Tools provides a way to throttle connection speed / bandwidth & artificially limit the maximum download throughput (rate of data transfer) In the Pluralsight Silverlight 3 Fundamentals video course , the instructor suggests a tip to test a custom progress bar by mimicking a slow web server on the local computer. This can be done by generating modem speeds with Fiddler, a HTTP proxy, using the menu option Rules > Performance > Simulate Modem speeds. The speed can also be customized . This technique is more convenient than using the System.Threading.Thread.Sleep method to create an artifical delay with code. Firefox Throttle plug-in also allows you to cap download/upload rates and monitor current bandwidth utilization. This plugin seems to be currently removed from the Mozilla add-ons directory but as per this Firefox support Forum its available on the Mozilla FTP server(direct link to .XPI) . Also see: FiddlerCap make...