400 Bad Request (Invalid Host) 在 C# 中使用简单的网络服务器
400 Bad Request (Invalid Host) using simple webserver in C#
我有一个小型 C# 控制台应用程序可用作网络服务器。它在同一网络中的设备的 NAT 上响应良好,但是当我尝试在浏览器中从外部 IP 访问它时,我得到 400。
路由器配置为端口转发,否则我得到 404。
localhost:8888/test 工作正常。
也 192.168.0.x:8888/测试任何设备。
xxx.xxx.xxx.xxx:8888/测试失败,出现 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);
}
}
}
网络服务器类:
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();
}
}
}
- 您的 DNS 或名称解析有问题。
- 没有将该流量转发到您的网络服务器的路由
- 检查你的端口转发,你应该将端口 8888 转发到内部 IP
- 最后但同样重要的是检查你的防火墙,它应该允许端口 8888
- 看看你的代码,你似乎在硬编码请求,把它设为一个变量,这样你就可以随时更改它
我在 ubuntu 使用自托管 OWIN 和 c# 时遇到了这个问题。
我通过将 .exe 中设置的基地址设置为
来修复它
http://*:80
而不是
http://192.168.1.1:80
与@sean-bradley 有类似的问题 - 但在 .net 上。
效果很好:
WebServer ws = new WebServer(SendResponse, "http://+:80/");
这个
WebServer ws = new WebServer(SendResponse, "http://*:80/");
加上 'Run as administrator' 模式下的启动应用程序(或命令提示符/Visual Studio)效果很好!
我有一个小型 C# 控制台应用程序可用作网络服务器。它在同一网络中的设备的 NAT 上响应良好,但是当我尝试在浏览器中从外部 IP 访问它时,我得到 400。
路由器配置为端口转发,否则我得到 404。
localhost:8888/test 工作正常。 也 192.168.0.x:8888/测试任何设备。
xxx.xxx.xxx.xxx:8888/测试失败,出现 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);
}
}
}
网络服务器类:
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();
}
}
}
- 您的 DNS 或名称解析有问题。
- 没有将该流量转发到您的网络服务器的路由
- 检查你的端口转发,你应该将端口 8888 转发到内部 IP
- 最后但同样重要的是检查你的防火墙,它应该允许端口 8888
- 看看你的代码,你似乎在硬编码请求,把它设为一个变量,这样你就可以随时更改它
我在 ubuntu 使用自托管 OWIN 和 c# 时遇到了这个问题。 我通过将 .exe 中设置的基地址设置为
来修复它http://*:80
而不是
http://192.168.1.1:80
与@sean-bradley 有类似的问题 - 但在 .net 上。
效果很好:
WebServer ws = new WebServer(SendResponse, "http://+:80/");
这个
WebServer ws = new WebServer(SendResponse, "http://*:80/");
加上 'Run as administrator' 模式下的启动应用程序(或命令提示符/Visual Studio)效果很好!