Still Using Fiddler to Test & Debug Your REST Services?

Oct 5, 2012   //   by Casey Rubano   //   Blog  //  No Comments

I use Fiddler for a number of tasks, and until recently one of those included testing and debugging my REST based services.  Makes sense right?  Given that Fiddler was built for debugging or “fiddling” with HTTP based communication.

For me, a typical Fiddler debugging session goes something like this…

Launch Fiddler and try not to let your eyes cross while you scan its numerous tabs and battleship gray beauty.

OK, technically there’s not that many tabs and it’s not that much of a battleship.  But if it’s been a while since you’ve played with the app then you know what I’m talking about.

After locating the “Composer Tab” I’d then begin typing up a request.  After sending it off, I’ll then switch to the “Inspectors” tab, after highlighting the corresponding Session in the left most pane, and select one of the many viewing formats available to me to review the response.

Now, let me stop here and say that I’m not trying to be critical of Fiddler.  Well, maybe just a little.  Fiddler is a powerful and sophisticated tool for web based debugging that boasts an average of 9,000 downloads each day. When it comes to inspecting HTTP based communication, there isn’t much it can’t do.   However, in my situation it was about finding the right tool for the job.  I didn’t want the weight of a “multi-tool” (e.g. Swiss Army Knife) when the only part I was using was the knife.

It was around this time that a colleague of mine at Fairway mentioned how he had been using a Google Chrome extension called Dev HTTP Client to test some REST services he had been writing.  While the main purpose of Dev HTTP Client is sending/receiving custom HTTP requests/responses, the extension offers simple yet valuable features that weren’t available in tools like Fiddler.  These included the ability to save a request for later use and the ability to define contexts to allow you to easily switch between various environments (e.g. from a test environment to production) without modifying request declaration.  Additionally, all of this was available with a friendly UI/UX.

To download the extension, you can go to http://chrome.google.com/webstore/ and search for “Dev HTTP Client”.  From there, you can read additional details about the extension and install it by clicking “Add To Chrome”. Once installed, you can launch the extension by opening a new tab and selecting the “Apps” section at the bottom of the tab (next to “Most visited”). Alternatively, you can type “dev http client” into the address bar (omnibox).

Once loaded you’ll see a very simple and visually appealing UI.

Dev HTTP Client - GET Request returning JSON

Dev HTTP Client – GET Request returning JSON

Dev HTTP Client - POST of JSON data

Dev HTTP Client – POST of JSON data

Another bonus? When I switched from writing ASP.NET on Windows to writing Java on a Mac, I was able to continue using HTTP DEV Client since it’s supported on both platforms.  Fiddler is only supported on Windows.

Will I still continue to use Fiddler?  Absolutely.  It’s a tool I’ll always want to have around when I’m inspecting HTTP based communication.  But if I’m simply testing, say, RESTful Controller methods in my Spring MVC web app, Dev HTTP Client is the proper tool for the job.

Leave a comment

(will not be published)

CAPTCHA Image
*

Recent Posts