Click here to Skip to main content
15,881,381 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 83K   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

 
Generalplesuggestion : a simple diagram Pin
BillWoodruff5-May-07 0:22
professionalBillWoodruff5-May-07 0:22 
GeneralRe: plesuggestion : a simple diagram Pin
Manuel Then7-May-07 6:20
Manuel Then7-May-07 6:20 
GeneralRe: plesuggestion : a simple diagram Pin
danielgianni10-Jan-08 6:50
danielgianni10-Jan-08 6:50 
GeneralShort examples [modified] Pin
Paul C Smith16-Apr-07 8:16
Paul C Smith16-Apr-07 8:16 
GeneralRe: Short examples Pin
Manuel Then17-Apr-07 9:49
Manuel Then17-Apr-07 9:49 
GeneralFound BUG!!!!1 Pin
Alberto Armando13-Apr-07 9:20
Alberto Armando13-Apr-07 9:20 
GeneralFixed Pin
Manuel Then17-Apr-07 10:08
Manuel Then17-Apr-07 10:08 
GeneralAvoiding IIS to run several web services Pin
lonifasiko11-Apr-07 20:09
lonifasiko11-Apr-07 20:09 
Don't exactly know what's the use of your tool...It's just to run/debug web applications inside Insomnia webserver? It's similar to Visual Studio 2005 built-in Web Server?

For example, I've got some web services running on IIS, but I don't want IIS any more. Could I for example have these web services running inside Insomnia Server so that clients can connect to them without problems?

Thanks very much for the info.

Regards.

MIGUELÓN
"Rezad a vuestros Dioses, amad a vuestras mujeres y luchad por vuestra patria!"

GeneralRe: Avoiding IIS to run several web services Pin
Manuel Then12-Apr-07 5:51
Manuel Then12-Apr-07 5:51 
GeneralRe: Avoiding IIS to run several web services Pin
lonifasiko12-Apr-07 6:22
lonifasiko12-Apr-07 6:22 
GeneralRe: Avoiding IIS to run several web services Pin
danielgianni29-Jan-08 10:50
danielgianni29-Jan-08 10:50 
QuestionASP.NET Pin
Patrick Wolf10-Apr-07 5:50
Patrick Wolf10-Apr-07 5:50 
AnswerRe: ASP.NET Pin
Manuel Then10-Apr-07 9:23
Manuel Then10-Apr-07 9:23 
AnswerRe: ASP.NET Pin
Manuel Then1-Apr-09 3:27
Manuel Then1-Apr-09 3:27 
QuestionAddressAlreadyInUse Pin
Alberto Armando10-Apr-07 0:43
Alberto Armando10-Apr-07 0:43 
AnswerRe: AddressAlreadyInUse Pin
Alberto Armando10-Apr-07 0:59
Alberto Armando10-Apr-07 0:59 

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.