![]() |
Languages »
C# »
Applications
Intermediate
License: The Code Project Open License (CPOL)
Building a Tiny WebServer in less than 500 linesBy Stephan MeynThis tiny webserver can be hosted by applications that need to serve specialised web pages |
C#, Windows, .NET 1.0, .NET 1.1VS.NET2003, Dev
|
|
Advanced Search |
|
|
|
||||||||||||||||
Originally I was intrigued what it would take to write a simple webserver. But as I progressed I realized that a tiny web server could be quite useful for a number of applications that need to serve specialized web pages and where the overhead of writing an ASP.NET application is not warranted (or where it is not possible to host ASP.NET).
A good example is a news aggregator, which serves a single page containing the current news feeds. This is included as an example in this project.
The core of the application is the class TinyServer. This class provides a simple web server that only supports GET requests (no forms) and serves web pages from a directory.
To run the sample webserver, you need to build the WebServer project and configure its App.Config file.
<appSettings>
<add key="WebRoot" value="E:\src\DotNet\WebServer\root" />
<!-- location of the web pages to serve -->
<add key="Default" value="default.html" />
<!-- name of the default page -->
<add key="TemplatePath" value="E:\src\DotNet\WebServer\html" />
<!-- location of special templates -->
<add key="Port" value="81" />
<!-- Port to server on -->
<add key="LogFile" value="" />
<!-- filepath, set to "" for console logging -->
<add key="LogLevel" value="All" />
<!--All, Warning, Error, None -->
</appSettings>
Once the webServer application starts it instantiates TinyServer and calls Run().
This spins off the server in a separate thread. Calling Stop() terminates
the thread.
Most likely you would want to build your own version of this webserver. You
need to subclass TinyServer and then override the necessary functions. The most
important to override is the method doGet()
. In this method you can interrogate the GET command and send back anything
that is necessary.
This is the default implementation:
protected virtual void doGet(string argument)
{
string url = getUrl(argument);
if (url.StartsWith("/"))
url = url.Substring(1);
if (url.Length == 0)
url = defaultPageName;
string path = Path.Combine(webRootPath, url);
if (File.Exists(path))
{
sendOk();
sendfile(path);
}
else
sendError(404, "File Not Found");
}
To implement your version there are a number of utility functions at hand:
string getUrl(string argument)
takes the command parameter of doGet and extracts the URL
string [] urlArgs
returns a list of arguments that suceeded the URL
sendOK()
sends the OK header. This is necessary before you send any HTML
sendError(int errornr, string errorMsg)
sends an error instead of the OK
sendString(string) sends a message
sendFile(path)
sends a whole file
sendTemplate (templateName) sends a file in the template directory
To demonstrate this ability I have written a simple news aggregator that regularly downloads the RSS feeds from the sources.
The RssAggregator does two things:
The first part uses the RssReader class created by smallguy78. It runs in its own thread and will download feeds once the current copy is older than one hour.
The second part is implemented by a subclass of TinyServer called AggServer.
AggServer only ever returns one page that contains the newsfeeds abstracts and
links to the articles. So the doGet() is pretty dumb:
protected override void doGet(string argument)
{
this.sendOk();
this.sendString(writeLinkPage());
}
The smarts to create the webpage is in the method writeLinkPage() which
in turn relies on helper function RssReader.CreateHtml(). The
whole example (excluding RssReader) just takes 80 lines of code.
Acknowledgements to smallguy78 whose RssReader code I used. You can find more about it in this RSS Reader article .
| You must Sign In to use this message board. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 18 Oct 2004 Editor: Nishant Sivakumar |
Copyright 2004 by Stephan Meyn Everything else Copyright © CodeProject, 1999-2009 Web10 | Advertise on the Code Project |