简体   繁体   中英

Simple Web Server C#

I need some help with this code:

using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;
using System.IO;
namespace HttpEcho
{
  class HttpEchoProgram
  {
    static void Main(string[] args)
    {
      TcpListener server = new TcpListener(IPAddress.Parse("127.0.0.1"), 80);
      server.Start();
      Console.WriteLine("Waiting for Client...");
      TcpClient newConn = server.AcceptTcpClient();
      IPEndPoint iep = (IPEndPoint)(newConn.Client.RemoteEndPoint);
      IPAddress add = iep.Address;
      int prt = iep.Port;
      Console.WriteLine("Connected with a client: {0}: {1} ", add, prt);
      NetworkStream stream = newConn.GetStream();
      StreamReader sr = new StreamReader(stream);
      StreamWriter sw = new StreamWriter(stream);
      sw.WriteLine("HTTP/1.1 200 OK");
      sw.WriteLine("Content-Type: text/plain");
      //sw.WriteLine("Content-Length: size");
      sw.WriteLine();
      String line = null;
      while ((line = sr.ReadLine()).Length != 0)
      {
        Console.WriteLine(line);
        sw.WriteLine(line);
        sw.Flush();
      }
      newConn.Close();
      server.Stop();
    }
  }
}

I want to modify this code so it can work as a Simple Web Server that it fetches requested page in the local file system and returns it to the browser.

You can save yourself a few thousand lines of code by starting with a HttpListener instead. http://msdn.microsoft.com/en-us/library/system.net.httplistener.aspx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM