Click here to Skip to main content
15,881,204 members
Articles / Programming Languages / C#
Article

C# Customizable Embedded HTTPServer

Rate me:
Please Sign up or sign in to vote.
4.80/5 (12 votes)
14 Nov 2007CPOL3 min read 102.7K   2.7K   62   35
A customizable embedded HTTPServer for C#.

Screenshot - screenshot2.jpg

Introduction

This article describes the usage of a small HTTP server library entirely written in C# that can be integrated and used in your own application. The purpose of this library is to provide developers with an easy to use and flexible way of generating HTTP responses on the fly based on the requested URI and/or the current state of the application.

Background

This library was developed by Hybrid GeoTools to act as an integrated web server to provide dynamic data to Google Earth. Although handling Google Earth's requests is a simple task at a first glance, it became apparent that not handling the HTTP protocol properly can cause unexpected results. For instance, not handling the Connect header properly caused Google Earth to reuse the connection while the server was actually waiting for a new connection. As a result, the request was not handled at all.

For this reason, the HybridDSP.Net library was developed. Currently, this library only contains the HTTPServer, but more services might be added in the future.

Design

The library exposes four classes and two interfaces:

  • HTTPServer - This class is the actual server. It manages the connections, the sessions, and the requests. It delegates the handling of a request to a request handler object that conforms to the IHTTPRequestHandler interface. This object is obtained through a request handler factory that's passed as one of the arguments of the contractor for HTTPServer. This factory has to conform to the IHTTPRequestHandlerFactory interface.
  • HTTPServerRequest - This class represents a request from a client to the server. The request handler factory can instantiate a request handler based on information obtained from the request. Once a request handler has been instantiated, it will be used to handle the request. If the request contains any data, a Stream can be obtained from the request to get the data (and do whatever needs to be done with it).
  • HTTPServerResponse - This class represents the response from the server to the client. It's initialized to return HTTP OK, by default. Once all headers are set correctly, a Stream can be obtained by sending the header to the client. The body of the response can be written to this Stream.
  • IHTTPRequestHandler - This interface defines the contract to which any request handler needs to conform. There's only one method defined:
  • C#
    public interface IHTTPRequestHandler
    {
        void HandleRequest(HTTPServerRequest request, HTTPServerResponse response);
    }
  • IHTTPRequestHandlerFactory - This interface defines the contract to which any request handler factory needs to conform. Again, there's only one method defined:
  • C#
    public interface IHTTPRequestHandlerFactory
    {
        IHTTPRequestHandler CreateRequestHandler(HTTPServerRequest request);
    }

Using the code

First of all, at least one request handler needs to be defined in order to be able to do anything.

C#
class DateTimeHandler : IHTTPRequestHandler
{
    public void HandleRequest(HTTPServerRequest request, HTTPServerResponse response)
    {
        if (request.URI == "/")
        {
            /**
             * In this example we'll write the body into the
             * stream obtained by response.Send(). This will cause the
             * KeepAlive to be false since the size of the body is not
             * known when the response header is sent.
             **/
            response.ContentType = "text/html";
            using (Stream ostr = response.Send())
            using (TextWriter tw = new StreamWriter(ostr))
            {
                tw.WriteLine("<html>");
                tw.WriteLine("<head>");
                tw.WriteLine("<title>Date Time Server</title>");
                tw.WriteLine("<meta http-equiv=\"refresh\" content=\"2\">");
                tw.WriteLine("</header>");
                tw.WriteLine("<body>");
                tw.WriteLine(DateTime.Now.ToString());
                tw.WriteLine("</body>");
                tw.WriteLine("</html>");
            }
        }
        else
        {
            response.StatusAndReason = HTTPServerResponse.HTTPStatus.HTTP_NOT_FOUND;
            response.Send();
        }
    }
}

This handler will generate an HTML page that shows the current date and time and refreshes itself every two seconds. If the request is not for the root, it will return an HTTP NOT FOUND response.

Next, a request handler factory needs to be defined in order to use the just created request handler.

C#
class RequestHandlerFactory : IHTTPRequestHandlerFactory
{
    public IHTTPRequestHandler CreateRequestHandler(HTTPServerRequest request)
    {
        return new DateTimeHandler();
    }
}

This factory will simply always instantiate a DateTimeHandler.

The last step is to hook the whole thing together. To do this one has to instantiate a factory and pass it to the contructor of the HTTPServer object. Then the server can simply be started.

C#
static void Main(string[] args)
{
    RequestHandlerFactory factory = new RequestHandlerFactory();
    HTTPServer server = new HTTPServer(factory, 8080);
    server.Start();

    Console.Write("Press enter to abort.");
    Console.ReadKey();

    server.Stop();
}

Now, take your favorite web browser, browse to http://localhost:8080, and enjoy your very own integrated web server.

History

  • 12 September 2007 - Initial issue.
  • 13 September 2007 - Updated the screenshot.
  • 14 November 2007 - Added support for IPv6.
  • 15 November 2007 - Fixed issue in killing the server thread.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer Hybrid DSP
Netherlands Netherlands

Comments and Discussions

 
GeneralMy vote of 5 Pin
davemaster9916-Dec-23 3:53
davemaster9916-Dec-23 3:53 
QuestionRequest from certain website. Pin
Member 132374902-Jun-17 5:50
Member 132374902-Jun-17 5:50 
QuestionResponse.SendFile error Pin
kubibay23-Mar-15 22:22
kubibay23-Mar-15 22:22 
QuestionSlow response from server Pin
JoshuaHebbel23-Jul-14 7:40
JoshuaHebbel23-Jul-14 7:40 
Questionwhy localhost works,but 127.0.0.1 can't? Pin
Xiqiang Sun23-Jun-13 22:32
Xiqiang Sun23-Jun-13 22:32 
QuestionSuggestion for IPv6 implementation Pin
Grismar6-Jan-13 5:54
Grismar6-Jan-13 5:54 
QuestionAs for video stream content, any idea how to send in chunks? Pin
sean 9118-Sep-12 10:44
sean 9118-Sep-12 10:44 
AnswerRe: As for video stream content, any idea how to send in chunks? Pin
Mark Swaanenburg19-Sep-12 20:17
Mark Swaanenburg19-Sep-12 20:17 
GeneralRe: As for video stream content, any idea how to send in chunks? Pin
sean 9120-Sep-12 4:40
sean 9120-Sep-12 4:40 
GeneralRe: As for video stream content, any idea how to send in chunks? Pin
kubibay23-Mar-15 22:12
kubibay23-Mar-15 22:12 
QuestionWhere is the http server folder or how do I specify the server default folder/location? Pin
sean 9113-Aug-12 11:04
sean 9113-Aug-12 11:04 
AnswerRe: Where is the http server folder or how do I specify the server default folder/location? Pin
Mark Swaanenburg13-Aug-12 22:33
Mark Swaanenburg13-Aug-12 22:33 
GeneralRe: Where is the http server folder or how do I specify the server default folder/location? Pin
sean 9114-Aug-12 3:47
sean 9114-Aug-12 3:47 
QuestionWindows Seven Compatibility Pin
kri251211-Jul-11 5:34
kri251211-Jul-11 5:34 
AnswerRe: Windows Seven Compatibility Pin
Mark Swaanenburg11-Jul-11 6:52
Mark Swaanenburg11-Jul-11 6:52 
GeneralRe: Windows Seven Compatibility Pin
Grismar6-Jan-13 8:28
Grismar6-Jan-13 8:28 
AnswerRe: Windows Seven Compatibility Pin
soho11-Jan-12 5:09
soho11-Jan-12 5:09 
QuestionCan't handle multiple simultaneous requests? Pin
softwareguy742-Dec-09 6:51
softwareguy742-Dec-09 6:51 
AnswerRe: Can't handle multiple simultaneous requests? Pin
Mark Swaanenburg2-Dec-09 7:19
Mark Swaanenburg2-Dec-09 7:19 
GeneralSimple clear practical Pin
Wayne Walter31-Aug-09 20:43
Wayne Walter31-Aug-09 20:43 
AnswerRe: Simple clear practical Pin
Mark Swaanenburg31-Aug-09 20:58
Mark Swaanenburg31-Aug-09 20:58 
Thanks. I'm glad the code is useful to more people than just myself.
GeneralQuestion on IO Pin
Jim Crafton14-Nov-07 4:04
Jim Crafton14-Nov-07 4:04 
GeneralRe: Question on IO Pin
Mark Swaanenburg14-Nov-07 4:16
Mark Swaanenburg14-Nov-07 4:16 
QuestionIPv6 problems Pin
Dorli13-Nov-07 5:45
Dorli13-Nov-07 5:45 
AnswerRe: IPv6 problems Pin
Mark Swaanenburg14-Nov-07 0:06
Mark Swaanenburg14-Nov-07 0:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.