如何告诉 websocket 服务器接受传入连接?
我已经开始使用 http://code.google.com/p/phpwebsocket/< 中的 websocket php 示例/a> 它在 localhost 上运行得很好,但不幸的是,除了 localhost 之外没有客户端可以连接到 websocket 服务器。每当我将路径更改为 http://10.27.50.25:8787/client.html,它不允许客户端连接。有人对如何修复它有任何想法/示例吗?
提前致谢
I have started using the websocket php example in http://code.google.com/p/phpwebsocket/ It works pretty well on localhost but unfortunately, no client other than localhost can connect to the websocket server. And whenever I change the path to something like http://10.27.50.25:8787/client.html, it does not let the client to connect. Does anyone have any idea/sample about how to fix it?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是跨域问题。现代浏览器阻止访问页面加载所在主机以外的主机。您可以通过提供 JSON 作为输出然后使用 jQuery Ajax JSON 解析来解决这个问题。
Could be a crossdomain problem. Modern browsers prevent access to hosts other than the one where the page loaded from. You can get around it by providing JSON as an output then using jQuery Ajax JSON parsing.