Click here to Skip to main content
15,884,388 members
Articles / Programming Languages / XML

Using InsomniaServer to Build a Web-interface for your Application

Rate me:
Please Sign up or sign in to vote.
4.80/5 (11 votes)
15 Jul 2011CPOL3 min read 83.1K   1.2K   41   40
InsomniaServer enables you to add a fully-featured, customizable webserver to your projects. See how it works.

Introduction

I always wanted my programs to be controlled over the Internet or a LAN. Indeed, the .NET Framework includes many features to help you achieve this; but I needed more, so I decided to start from the very beginning and created my own, different HTTP server.

Talking about an HTTP server, usually an application sending local files to clients, comes to one's mind. But InsomniaServer is different. It is all about customizing. You are absolutely free to answer every request your very own way, without having to use ASP.NET on IIS or some scripting language on Apache, which are quite big and often inconvenient for special tasks.

Let's pick up my first sentence: You wrote a program, which needs a Web interface. Do you really want to learn all about HTTP to do so? No, you need an easy way, to achieve everything you want - fast, transparent and stable. InsomniaServer is perfect for you.
Another thing: You created a .NET assembly, that does a special (for example mathematical) thing, and want to present its output/reaction on some input on the Internet. Just reference InsomniaServer and you are nearly done.

It would be possible to talk for hours about special cases, in which InsomniaServer is great. Even though it is much better to think about your project and its special scenario, maybe you are looking for something like IS - so I would like to invite you to test it.

Using the Code

Initially I tried to insert the tutorials, I have written for InsomniaServer, here - but had to see that they are a little too long for one article, and I did not want to scare you. So I do (for now) not post them as articles on The CodeProject, but provide them together with my demo projects included within the documentation, which can be downloaded here.

I recommend testing the MultiPaint sample first (best, server and HTTP browser on different machines), as it shows what InsomniaServer is all about. Afterwards, read the tutorials and play with the code, as this is in my opinion the best way to get into a new "technique".

The full documentation of InsomniaServer can be found here.

Points of Interest

While looking at InsomniaServer or developing some program using it (<- I would be pleased to hear about something like that:)), please do not miss the InsomniaSoftware.Server.Debug namespace. I really liked it while debugging and tuning the Web interface of my software.

History

  • 02/04/07 - Version 1.0 completed

  • 17/04/07 - Small bugfix in HttpRequest.cs (thanks to Alberto aka rwtrecasd)

  • 04/05/07 - InsomniaServer version 1.0.1.0 uploaded

    • Major fixes in HTML-form handling and encoding
    • New functions added
    • Added SystemBrowser sample for those who doubt IS's practical use;). It allows you to view a PC's hardware and disk content via webbrowser (including login and user management).
      This is how SystemBrowser works:

      Screenshot - SystemBrowser_diagram.gif

  • 12/05/07 - InsomniaServer version 1.0.2.1 uploaded

    • HtmlSource added. It enables you to create a structure of HTML elements (many pre-defined and any customized one that you want) - IS builds the final page for you. Just to give a simple example:

      C#
      HtmlSource page = new HtmlSource("Hello!");
      page.curNode.AddSubNode(HtmlObjects.BoldText
          ("Hello world! Sp€c?a£ cHäRa?t?r?"));

      This results in:

      HTML
      <html><head><title>Hello!</title></head>
      <body>
      <b>Hello world! Sp&#8364;c&#1111;&#261;&#163; 
          cH&#228;R&#945;&#1089;t&#1028;r&#1029;</b>
      
      </body></html>  
  • 10/01/08 - InsomniaServer version 1.0.3.0 uploaded

    • Added IPv6 support to IS, which fixed problems with Windows Vista
    • Minor changes
    • Updated examples

Please update to 1.0.3.0. You will have to make no changes within your code.

References

  • HTTP: The Definitive Guide 1st edition by David Gourley and Brian Totty

License

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


Written By
Student
Germany Germany
I was born in 1987. Unfortunately too late to experience the real rise of the PC. But fortunately late enough to enjoy things like MS's .net during my school time Wink | ;)

From the time when some relative taught me a little BASIC under MS DOS, I loved to tell computers what to do - even though my real start in programming was around the age of 16.

At the moment, I am studying Software Engineering at University of Augsburg, always hoping to find time to design and program.
Besides, I like meeting friends, spent time with my girlfriend and enjoy life Smile | :)

Comments and Discussions

 
QuestionStatic Sources Pin
Stylianos Polychroniadis7-Feb-16 10:00
Stylianos Polychroniadis7-Feb-16 10:00 
SuggestionIS Use Cse Scenario... Pin
TheRaven18-Jul-11 13:51
TheRaven18-Jul-11 13:51 
Questionold source ? Pin
HamsterTrainer0113-Jul-11 10:56
HamsterTrainer0113-Jul-11 10:56 
AnswerRe: old source ? Pin
Manuel Then14-Jul-11 10:12
Manuel Then14-Jul-11 10:12 
Hi,
Thank you for your feedback.
I just submitted an update for the article including the latest source version I could find (1.0.3.0). It should be on CodeProject in some days.

Greetz!
M.T.
GeneralRe: old source ? Pin
HamsterTrainer0114-Jul-11 11:24
HamsterTrainer0114-Jul-11 11:24 
GeneralRe: old source ? Pin
Manuel Then15-Jul-11 1:38
Manuel Then15-Jul-11 1:38 
GeneralQuestion about performance Pin
Dr. Emmett Brown28-Jul-10 14:20
Dr. Emmett Brown28-Jul-10 14:20 
GeneralRe: Question about performance Pin
Manuel Then4-Aug-10 5:28
Manuel Then4-Aug-10 5:28 
GeneralMy vote of 5 Pin
Olivier DANIEL28-Jun-10 5:02
Olivier DANIEL28-Jun-10 5:02 
GeneralRe: My vote of 5 Pin
Manuel Then4-Aug-10 5:31
Manuel Then4-Aug-10 5:31 
QuestionHow to Set Up ??? Pin
kbchiew11-Jan-09 23:20
kbchiew11-Jan-09 23:20 
AnswerRe: How to Set Up ??? Pin
Manuel Then12-Jan-09 3:44
Manuel Then12-Jan-09 3:44 
QuestionFeature requests? Pin
Manuel Then31-Dec-07 0:25
Manuel Then31-Dec-07 0:25 
AnswerRe: Feature requests? Pin
Member 475058415-Nov-08 21:51
Member 475058415-Nov-08 21:51 
GeneralRe: Feature requests? Pin
Manuel Then21-Dec-08 23:48
Manuel Then21-Dec-08 23:48 
QuestionSetting return status code? Pin
pettink14-Nov-07 8:11
pettink14-Nov-07 8:11 
AnswerRe: Setting return status code? [modified] Pin
Manuel Then29-Nov-07 2:15
Manuel Then29-Nov-07 2:15 
GeneralSuggestion of improvement Pin
Alberto Armando9-Nov-07 3:22
Alberto Armando9-Nov-07 3:22 
GeneralRe: Suggestion of improvement Pin
Alberto Armando12-Nov-07 6:17
Alberto Armando12-Nov-07 6:17 
GeneralRe: Suggestion of improvement Pin
Manuel Then29-Nov-07 2:08
Manuel Then29-Nov-07 2:08 
GeneralThoughts on Compact Framework Pin
kcrismon15-May-07 17:52
kcrismon15-May-07 17:52 
QuestionWhy use it? Pin
Alberto Armando7-May-07 1:52
Alberto Armando7-May-07 1:52 
AnswerRe: Why use it? Pin
Manuel Then7-May-07 5:32
Manuel Then7-May-07 5:32 
AnswerRe: Why use it? Pin
TheRaven18-Jul-11 13:55
TheRaven18-Jul-11 13:55 
Generalplesuggestion : a simple diagram Pin
BillWoodruff5-May-07 0:22
professionalBillWoodruff5-May-07 0:22 

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.