views:

119

answers:

5

Hi,

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?

+6  A: 

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.

Moo
Fiddler isn't a Microsoft tool...
Daniel DiPaolo
Help -> About Fiddler -> Author: Eric Lawrence ([email protected]) Copyright 2003-2010 Microsoft Corporation. All rights reserved.Just because its not on Microsoft.com doesn't mean its not a Microsoft tool.
Moo
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
It IS a Microsoft tool according to the license agreement. http://www.fiddler2.com/Fiddler/help/license.asp
ssg
@rifferte - aside from ssgs point above, why is the Microsoft copyright notice in the about window then? Its a Microsoft tool.
Moo
@rifferte The difference is that Lutz wrote reflector before he went to work for Microsoft.
Darrel Miller
OK - I stand correct :)Odd that the copyright on the site is his, yet the one on the tool is MS. . .
rifferte
A: 

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.

Daniel DiPaolo
A: 

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

Surya Suravarapu
A: 

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

nategood