Apply conversion script to all *.md files. authored by Alexander Hansen Færøy's avatar Alexander Hansen Færøy
[[TOC]]
== Lightweight Web Servers For Windows == ## Lightweight Web Servers For Windows
For Win32 Clients the ASP.NET Cassini web server (http://www.asp.net/Projects/Cassini/Download/download.aspx?tabindex=0&tabid=1) can be used as a lightweight web server. I do not know the level of anonymity it provides out of the box so this should be investigated thoroughly before relying on it. The main thing is that this is the most lightweight web server that I am aware of for the Windows O/S. For Win32 Clients the ASP.NET Cassini web server (http://www.asp.net/Projects/Cassini/Download/download.aspx?tabindex=0&tabid=1) can be used as a lightweight web server. I do not know the level of anonymity it provides out of the box so this should be investigated thoroughly before relying on it. The main thing is that this is the most lightweight web server that I am aware of for the Windows O/S.
You will need to install the Microsoft.Net framework also to make this work since this web server is capable of processing aspx pages. You will need to install the Microsoft.Net framework also to make this work since this web server is capable of processing aspx pages.
=== Example === ### Example
{{{ ```
The easiest way to trigger this server is by placing a batch file in the directory where the CassiniWebServer application is installed: The easiest way to trigger this server is by placing a batch file in the directory where the CassiniWebServer application is installed:
This is the most important line that needs to be present in that batch file: This is the most important line that needs to be present in that batch file:
...@@ -21,19 +21,19 @@ cd Cassini ...@@ -21,19 +21,19 @@ cd Cassini
call CassiniWebServer "E:\Projects\Jason\WebServer" 5222 / call CassiniWebServer "E:\Projects\Jason\WebServer" 5222 /
REM ECHO Press any key to continue REM ECHO Press any key to continue
REM pause REM pause
}}} ```
=== Display === ### Display
If everything goes well you should see a window that displays something like this (upon executing sample batch file): If everything goes well you should see a window that displays something like this (upon executing sample batch file):
=== Cassini Personal Web Server === ### Cassini Personal Web Server
{{{ ```
Application Directory: E:\projects\jason\webserver Application Directory: E:\projects\jason\webserver
Server Port: 5222 Server Port: 5222
Virtual Root: / Virtual Root: /
}}} ```
Click to Browse: http://localhost:5222 Click to Browse: http://localhost:5222
... ...
......