Click here to Skip to main content
15,880,956 members
Articles / Programming Languages / C#

C# WebServer Using Sockets

Rate me:
Please Sign up or sign in to vote.
5.00/5 (27 votes)
23 Jan 2014CPOL7 min read 103.5K   9.9K   161  
How to make a simple web server which supports GZIP compression, applications, and sessions.
<?xml version="1.0" encoding="utf-8" ?>
<Applications>


  <Application>
    <Name>Chat</Name>
    <AssemblyPath>Demos.dll</AssemblyPath>
    <ApplicationSettingsClass>Chat.HttpApplication.ChatServerConfiguration</ApplicationSettingsClass>
    <ApplicationClass>Chat.HttpApplication.ChatServer</ApplicationClass>
  </Application>


  <Application>
    <Name>Desktop viewer</Name>
    <AssemblyPath>Demos.dll</AssemblyPath>
    <ApplicationSettingsClass>DesktopViewer.Application.DesktopViewerSettings</ApplicationSettingsClass>
    <ApplicationClass>DesktopViewer.Application.DesktopViewer</ApplicationClass>
  </Application>


</Applications>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer
United Kingdom United Kingdom
Alberto Biafelli,
Software Developer

Comments and Discussions