开发者

Real-time HTTP stream writing console

开发者 https://www.devze.com 2023-01-11 00:11 出处:网络
Is there a program available that will allow me to interactively write HTTP stream data and send it to a server? Ideally I\'m looking for a console app that will allow me to type or paste HTTP headers

Is there a program available that will allow me to interactively write HTTP stream data and send it to a server? Ideally I'm looking for a console app that will allow me to type or paste HTTP headers and body, send it to my server, and get the response headers and body back.

D开发者_StackOverflow社区oes such a program already exist?

I'm running W7 64-bit with .NET 4.0.


if you change your mind and want a GUI app

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

or you can also use fiddler

Edit:

http://code.google.com/p/rest-client/ also supports commandline


Maybe telnet is an option for you? If it's not already installed on your machine, take a look at this guide from MS.

To connect to your server use it like this:

telnet www.myserver.de 80

After the connection is established, you can paste your HTTP GET reqests or what ever you like.


tinyget is a useful MSFT tool that will make simple get requests. You can store these requests in text files and stream them in.

0

精彩评论

暂无评论...
验证码 换一张
取 消