command line http server for windows

Solution 1:

Netcat will do it, if I am understanding you properly.

I like to use the version of netcat from here as it does not have the security issues associated with the -e option.

Now create a text file containing something like:

echo HTTP/1.0 200 OK

<html>
<head>
<title>hello</title>
</head>
<body>
<h1>hello world</h1>
<form method="post">
send something: <input type="text" name="postText" />
<input type="submit" value="Submit" />
</form>
</body>
</html>

If you run the following on the command line, where page.txt is the name of your text file above, netcat will act as a one line webserver.

for /l %a in (1,0,2) do type page.txt | nc -w 1 -l -p 80 | findstr "postText"

Connecting to http://localhost will show the web page above. Typing something in the "send something" box and pressing submit will show the value submitted on the command line where you ran netcat. The "-w 1" (disconnect after one second) is a bit of a fudge to get netcat to behave like a web server, but it works, all be it with a one second delay.

You could even use a batch file to return some http which is dependant on what you posted, by redirecting the entire output of the command to the batch file, and using a set /p in a loop, looking for "postText=".

Solution 2:

The no-setup single executable mongoose

Or if you have python installed, there is the built-in SimpleHTTPServer module

python -m SimpleHTTPServer 8000

Note: if you have OpenOffice or LibreOffice installed, you also have python ;-)

Example : OpenOffice.org 3.4.1

C:\Program Files\OpenOffice.org 3\Basis\program\python-core-2.6.1\bin

Solution 3:

You might look into a win32 port of Netcat called NCat. Look at this page for an example of NCat in listen mode: http://nmap.org/ncat/guide/ncat-usage.html#ncat-listen to see how to get the 200 result code you specified.

You might also look at: http://www.ritlabs.com/en/products/tinyweb/

It is a command line web server, with no bells - may also provide what you are looking for.

Rob