views:

101

answers:

3

I was wondering if anyone knew of a tool where I could send a fully formed HTTP body ( headers & content ) to a web server. So far the best I've got is putty but was hoping for something where I could look @ and edit the payload then click a button and send it. ( I could probably write something like this in a couple minutes but was hoping there is an already finished and semi-polished app.

Context: I'm testing out a multipart/related soap request and trying to come up with some idea's for editing one element of the payload that's getting eaten somewhere in its journey.

+1  A: 

Something like netcat would be perfect. Apparently this is a windows version.

Ryan Graham
This might be a solution except I don't have any c/c++ compilation tools on the windows box, until now I didn't see a point of bothering with it.
David
The second link is for a compiled windows binary.
Ryan Graham
+4  A: 

Fiddler has a request builder in it.

JoshBerke
+3  A: 

cURL is a convenient command-line tool (with Windows binaries available).

Jason DeFontes
David