gpt4 book ai didi

c# - HttpListener : The requested address is not valid in this context

转载 作者:太空狗 更新时间:2023-10-29 22:56:50 34 4
gpt4 key购买 nike

当使用 HttpListener 对象创建

var server = new HttpListener();
server.Prefixes.Add("http://*:8080/");
server.Start();

一切正常。然而,当我使用

var server = new HttpListener();
server.Prefixes.Add("http://demindiro.com:8080/");
server.Start();

它抛出 System.Net.Sockets.SocketException (0x80004005): The requested address is not valid in this context(下面的完整堆栈跟踪)。

在谷歌搜索异常后,很明显它与使用的地址有关。在挖掘了 HttpListenerMono 源代码之后和 EndPointManager我确定问题可能出在这部分代码中(在 GetEPListener 处):

static EndPointListener GetEPListener (string host, int port, HttpListener listener, bool secure)
{
IPAddress addr;
if (host == "*")
addr = IPAddress.Any;
else if (IPAddress.TryParse(host, out addr) == false){
try {
#pragma warning disable 618
IPHostEntry iphost = Dns.GetHostByName(host);
#pragma warning restore 618
if (iphost != null)
addr = iphost.AddressList[0]; // <---
else
addr = IPAddress.Any;
} catch {
addr = IPAddress.Any;
}
// ...
}

我发现几乎在所有情况下都使用 ÌPAddress.Any,除非它可以将外部 IP 地址与给定的主机名相关联。

但是,我只能假设这是故意的,因为它是相当明确地编写的,而且 HttpListener 似乎对其他开发人员来说工作得很好,所以在这一点上,我对发生了什么一无所知这里错了。


堆栈跟踪:

Unhandled Exception:
System.Net.Sockets.SocketException (0x80004005): The requested address is not valid in this context
at System.Net.Sockets.Socket.Bind (System.Net.EndPoint localEP) [0x00043] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointListener..ctor (System.Net.HttpListener listener, System.Net.IPAddress addr, System.Int32 port, System.Boolean secure) [0x00047] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointManager.GetEPListener (System.String host, System.Int32 port, System.Net.HttpListener listener, System.Boolean secure) [0x0009d] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointManager.AddPrefixInternal (System.String p, System.Net.HttpListener listener) [0x0005e] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointManager.AddListener (System.Net.HttpListener listener) [0x0009c] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.HttpListener.Start () [0x0000f] in <50d80b08c1a5449282b22aedf03ce925>:0
at Playground.Playground.StartHttpListener () [0x00016] in <d51cc6c047ee47c9a05c5e174876cbec>:0
at Playground.Playground.Main (System.String[] args) [0x00000] in <d51cc6c047ee47c9a05c5e174876cbec>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.Net.Sockets.SocketException (0x80004005): The requested address is not valid in this context
at System.Net.Sockets.Socket.Bind (System.Net.EndPoint localEP) [0x00043] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointListener..ctor (System.Net.HttpListener listener, System.Net.IPAddress addr, System.Int32 port, System.Boolean secure) [0x00047] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointManager.GetEPListener (System.String host, System.Int32 port, System.Net.HttpListener listener, System.Boolean secure) [0x0009d] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointManager.AddPrefixInternal (System.String p, System.Net.HttpListener listener) [0x0005e] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.EndPointManager.AddListener (System.Net.HttpListener listener) [0x0009c] in <50d80b08c1a5449282b22aedf03ce925>:0
at System.Net.HttpListener.Start () [0x0000f] in <50d80b08c1a5449282b22aedf03ce925>:0
at Playground.Playground.StartHttpListener () [0x00016] in <d51cc6c047ee47c9a05c5e174876cbec>:0
at Playground.Playground.Main (System.String[] args) [0x00000] in <d51cc6c047ee47c9a05c5e174876cbec>:0

PS:我明确想使用 demindiro.com,而不是 *

PS2:我知道有很多关于这个特殊异常的话题,但似乎没有一个与HttpListener.Start()抛出这个异常有关。


更新我又用谷歌搜索了我的问题,但这次我专门查找了 TcpListener,我找到了这个答案:https://stackoverflow.com/a/17092670/7327379

The TcpListener can only be bound to a local IP Address of the computer that runs it. So the IP you're specifying isn't an IP of the local machine. Your public IP isn't the same IP as your local machine, especially if you're using some kind of NAT.

If I recall correctly, it's common to just do IPAddress.Any as your IP to initialise the listener.

所以如果我明白这一点,这意味着要绑定(bind)到我的外部 IP,我必须以某种方式从这里开始

Server <-- local IP --> Modem <-- external IP --> The Internet

对此

Server <-- external IP --> The Internet

这是正确的吗?如果是,如何在没有调制解调器的情况下将服务器连接到互联网?或者我还应该做什么?

最佳答案

考虑到 http://demindiro.com似乎有效,这可能是多余的。然而……

这里有几件事你需要注意:

通过主机名绑定(bind)是错误的

一般来说,按主机名绑定(bind)是一个坏主意™。如果主机名解析为多个地址 - localhost 例如,当你启用了 IPv6 时,或者当你在同一台机器上有多个 IPv4 地址时,等等 - 你无法控制这些地址中的哪一个它绑定(bind)到。在 localhost 的情况下,您可能会(有时令人不快)惊讶地发现它绑定(bind)到 ::1 但不是 127.0.0.1

这里的问题是 demindiro.com 是一个无法解析为计算机上存在的内部 IP 地址的名称,因此您无法直接绑定(bind)到它。准确地说,demindiro.com 是一个主机名(通过 DNS)解析为 IPv4 地址 109.132.169.132,这(几乎可以肯定)不是您的 IP 地址电脑有。

绑定(bind)到主机名不绑定(bind)到主机名

相反,它绑定(bind)到主机名在机器上解析到的第一个 IP 地址。不多也不少。

假设您修改了您的主机文件,让 demindiro.com 解析(仅在您的机器上)到一个有效的本地 IPv4 地址,例如 192.168.0.123。如果我在你的网络上并且连接到那个地址,我就会得到你的服务。我尝试访问的主机名无关紧要,只要它解析为该地址,我就可以建立连接。我可以通过 IP 或解析为该 IP 的任何主机名直接连接,而你永远不会知道。

只有在建立连接并解析请求后,您才能(有时)检测到哪个主机名是请求的目标。

在 HTTP(S) 请求的情况下,主机名通常作为请求的一部分发送。这允许 Web 服务器在同一地址上托管多个站点。 Web 服务器接收请求,确定它应该在本地站点之间路由到哪里,然后将请求发送到已解析的站点。在 HTTPS 中做起来有点困难,但这个问题主要由 SNI 解决。 .

但是,如果我使用没有主机名的绝对路径向您的服务发出 HTTP 1.0 请求...那会怎样?

绑定(bind)只能是本地的

换句话说,您不能绑定(bind)到运行代码的机器上不存在的地址。更重要的是,你不能直接绑定(bind)到你的互联网连接的公共(public)地址,除非它直接终止在你的机器上。由于我们中没有多少人在我们的桌面上运行拨号或桥接 PPPoE,因此您尝试绑定(bind)的地址可能不可用。

一般来说,您需要做的是在您的互联网连接上设置某种 NAT 重定向,将端口 8080 上的传入请求转换为公共(public)地址 109.132.169.132,并将它们重定向到您的内部地址(192.168.0.123 或其他)。

假设 demindiro.com 解析为您的公共(public) IP 地址。如果没有,那么您就会遇到各种其他问题。跨公共(public)网络的 NAT 是......很奇怪。您在链中添加的每个 NAT 都会增加更多的复杂性、更多的故障点等。

关于c# - HttpListener : The requested address is not valid in this context,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49267224/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com