以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  指定的网络名格式无效  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=186846)

--  作者:lxhmax
--  发布时间:2023/6/2 17:18:00
--  指定的网络名格式无效
老师,我在服务器中使用公网ip报错了是什么情况?是下面这样写吗?
HttpServer.Prefixes.Add("http://127.0.0.1/")
HttpServer.Prefixes.Add("http://123.207.3.165/")
HttpServer.Start()

指定的网络名格式无效。
   在 System.Net.HttpListener.AddAllPrefixes()
   在 System.Net.HttpListener.Start()
   在 Foxtable.HttpListenter.Start()

--  作者:有点蓝
--  发布时间:2023/6/2 17:32:00
--  
1、只能启动本机的IP,在哪台电脑启动就改为哪台电脑的ip
2、可能代码重复执行,重复启动了,第一行加一句
HttpServer.Close
HttpServer.Prefixes.Add("http://127.0.0.1/")
HttpServer.Prefixes.Add("http://123.207.3.165/")
HttpServer.Start()
3、80端口被其它占用了,改为使用其它端口