使用C#中的简单Web服务器400错误请求(无效主机)

时间:2015-01-04 21:49:36

标签: c# webserver nat tcplistener

我有一个小型的C#控制台应用程序作为网络服务器。它对同一网络中的设备的NAT响应很好,但是当我尝试从外部IP在浏览器中访问它时,我得到400.

路由器配置为向前移植,否则我得到404。

localhost:8888 / test工作正常。 对任何设备也是192.168.0.x:8888 / test。

xxx.xxx.xxx.xxx:8888/test因HTTP错误400而失败。请求主机名无效。

有什么建议吗?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;

namespace httpsrv
    {
    class Program
        {
        static void Main(string[] args)
            {
            WebServer ws = new WebServer(SendResponse, "http://localhost:8888/test/");
            ws.Run();
            Console.WriteLine("Pi server started");
            Console.ReadKey();
            ws.Stop();
            }

        public static string SendResponse(HttpListenerRequest request)
            {
            return string.Format("<HTML><BODY>Hosted from rasp. pi!<br>{0}</BODY></HTML>", DateTime.Now);
            }
        }
    }

Webserver类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace httpsrv
    {
    public class WebServer
        {
        private readonly HttpListener _listener = new HttpListener();
        private readonly Func<HttpListenerRequest, string> _responderMethod;

        public WebServer(string[] prefixes, Func<HttpListenerRequest, string> method)
            {
            if (!HttpListener.IsSupported)
                throw new NotSupportedException(
                    "Needs Windows XP SP2, Server 2003 or later.");

            if (prefixes == null || prefixes.Length == 0)
                throw new ArgumentException("prefixes");

            if (method == null)
                throw new ArgumentException("method");

            foreach (string s in prefixes)
                _listener.Prefixes.Add(s);

            _responderMethod = method;
            _listener.Start();
            }

        public WebServer(Func<HttpListenerRequest, string> method, params string[] prefixes)
            : this(prefixes, method) { }

        public void Run()
            {
            ThreadPool.QueueUserWorkItem((o) =>
            {
                Console.WriteLine("Webserver running...");
                try
                    {
                    while (_listener.IsListening)
                        {
                        ThreadPool.QueueUserWorkItem((c) =>
                        {
                            var ctx = c as HttpListenerContext;
                            try
                                {
                                string rstr = _responderMethod(ctx.Request);
                                byte[] buf = Encoding.UTF8.GetBytes(rstr);
                                ctx.Response.ContentLength64 = buf.Length;
                                ctx.Response.OutputStream.Write(buf, 0, buf.Length);
                                }
                            catch { } 
                            finally
                                {
                                ctx.Response.OutputStream.Close();
                                }
                        }, _listener.GetContext());
                       }
                    }
                catch { }
            });
            }

        public void Stop()
            {
            _listener.Stop();
            _listener.Close();
            }
        }
    }

4 个答案:

答案 0 :(得分:7)

在使用自托管OWIN和c#时,我在ubuntu上遇到了这个问题。 我通过将我的.exe中设置的基地址设置为

来修复它
http://*:80 

而不是

http://192.168.1.1:80

答案 1 :(得分:1)

  1. 您的DNS或名称解析都不好。
  2. 没有路由将该流量转发到您的网络服务器
  3. 检查您的端口转发,您应该将端口8888转发到内部IP
  4. 最后但并非最不重要的是检查防火墙,它应该允许端口8888
  5. 查看您的代码,似乎您正在对请求进行硬编码,使其成为变量以便您可以即时更改

答案 2 :(得分:1)

{{1}}

加上启动应用程序(或命令提示符/ Visual Studio),以&#39;以管理员身份运行&#39;模式工作得很好!

答案 3 :(得分:0)

与@ sean-bradley有类似的问题 - 但在.net上。

这很有效:

WebServer ws = new WebServer(SendResponse, "http://+:80/");