我在共享托管配置中有一个很小的网站在Azure上运行。我上面有一堆涉及打开套接字的网络代码,所有这些代码都能成功工作。
我写了一些代码来发送ping命令,并抛出了PingException
,内部异常是带有说明的Win32Exception
There are no more endpoints available from the endpoint mapper
我正在猜测这是因为我正在尝试发送ICMP请求,但是任何指导将不胜感激,尤其是一种变通方法。
最佳答案
我看到了同样的错误。我相信这是因为许多Azure服务(包括Web Apps)不允许出站ICMP:
https://social.msdn.microsoft.com/Forums/en-US/71c85bea-572a-4232-87f8-3e45e674f08a/there-are-no-more-endpoints-available-on-azure-website?forum=windowsazurewebsitespreview
关于c# - ping时"There are no more endpoints available from the Endpoint Mapper"异常,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22446154/