Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a Windows graphical utility for performing HTTP operations.

For example, I want to be able to say things like:

POST to http://example.org/test/service With a POST body: "Data goes here"

Does anyone know a good piece of software for doing this?

share|improve this question
see stackoverflow.com/questions/1087185/… – nos May 17 '10 at 1:49

8 Answers

RestClient is my favorite. It's Java based. I think it should meet your needs quite nicely. I particularly like the Auth suppport.

http://code.google.com/p/rest-client/

Screen Shot

share|improve this answer
Wanted to follow up here much later and say, hurl.it is now another great web based alternative, regardless of OS. – nategood Feb 23 '12 at 21:38

Have you looked at Fiddler 2 from Microsoft?

http://www.fiddler2.com/fiddler2/

Allows you to generate most types of request for testing, including POST. It also supports capturing HTTP requests made by other applications and reusing those for testing.

share|improve this answer
2  
Fiddler isn't a Microsoft tool... – Daniel DiPaolo May 14 '10 at 14:51
7  
Help -> About Fiddler -> Author: Eric Lawrence (ericlaw@microsoft.com) Copyright 2003-2010 Microsoft Corporation. All rights reserved. Just because its not on Microsoft.com doesn't mean its not a Microsoft tool. – Moo May 14 '10 at 14:53
1  
Just because it's made by someone who works at Microsoft does not make it a Microsoft tool. . . Reflector is another example of a tool made by a Microsoft employee. He even went on to sell it to another company (Red-Gate). – rifferte May 14 '10 at 14:58
3  
It IS a Microsoft tool according to the license agreement. fiddler2.com/Fiddler/help/license.asp – ssg May 14 '10 at 15:08
2  
@rifferte - aside from ssgs point above, why is the Microsoft copyright notice in the about window then? Its a Microsoft tool. – Moo May 14 '10 at 15:42
show 5 more comments

I like rest-client a lot for the purposes you described. It's a Java application to test REST-based web services.

share|improve this answer

I too have been frustrated by the lack of good graphical http clients available for Windows. So over the past few months I've been developing one myself: I'm Only Resting, "a feature-rich WinForms-based HTTP client." It's open source and I just released the initial version which is available for download: http://code.google.com/p/im-only-resting/downloads/list.

It currently lacks more advanced HTTP features such as file uploads, but for basic requests involving a URL, HTTP method, headers, and content, it provides a very good user interface with great request and response management.

Here's a screenshot:

enter image description here

share|improve this answer

You can use Microsoft's WFetch tool also. This is a good tool for all HTTP operations.

share|improve this answer

Honestly, for simplistic stuff like that I typically whip up a quick HTML form in a local file and load that up in a browser.

share|improve this answer

If anybody is still interest Eclipse Labs Rest Client tool is an excellent choice. I'm trying it in Windows in an EXE version and works smoothly.

I've worked also with Rest Client previously and its great too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.