UPnP 发现可以通过 Javascript 完成吗?
我正在开发一个网页,我想在其中发现一些 UPnP 设备,但是客户端可能与服务器位于不同的 VLAN 上。因此,UPnP 发现需要在客户端进行。显然 UDP 不能用 Javascript 实现。有谁知道是否有办法从客户端浏览器进行 UPnP 发现?
I'm working on a webpage on which I want to discover some UPnP devices, however the client maybe on a different VLAN than the server. So, UPnP discovery needs to happen on the client. Apparently UDP is not possible with Javascript. Does anyone know if there is a way to do UPnP discovery from the client's browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaScript 没有内置的原始网络功能。例如,您本身无法执行 ping 操作。您可以使用
img
标签进行 DIY ping/端口扫描,并将src
属性设置为目标并测试响应。但是,除此之外,您还需要一个插件或 ActiveX。我还建议使用 Java。
JavaScript has no built-in raw networking capabilities. For example, you can't natively do pings. You can do a DIY ping/port scanner using the
img
tag, and setting thesrc
attribute to a target and testing the response. But, other than that, you will need a plugin or ActiveX.I would also suggest using Java.