是否可以在无线自组织网络中托管 ASP.NET 网站?
我需要设置一个服务器来测试项目。那么是否可以将其托管在无线自组织网络上? 那么如何实施呢?
I need to set up a server for testing a project. So is it possible to host it on a wireless adhoc network?
So how to implement it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET 在 HTTP 之上工作,而 HTTP 在 TCP 之上工作。底层的运输基础设施并不重要。
唯一的要求是客户端必须能够连接到服务器上的 TCP 端口 80(或您选择的任何端口)。
ASP.NET works on top of HTTP which works on top of TCP. The underlying transport infrastructure does not matter.
The only requirement is the client must be able to connect to the TCP port 80 (or any of your choice) on the server.