客户端脚本和服务器之间没有Websocket连接。
在我的本地环境中工作正常。
我也在关注这个link。
这是一个服务器脚本,用于初始化websocket服务器并侦听到8080
端口的客户端连接。
public function run()
{
$loop = Factory::create();
$pusher = new Pusher;
$context = new Context($loop);
$pull = $context->getSocket(ZMQ::SOCKET_PULL);
$pull->bind('tcp://127.0.0.1:5555'); // Binding to 127.0.0.1 means the only client that can connect is itself
$pull->on('message', array($pusher, 'onBlogEntry'));
// Set up our WebSocket server for clients wanting real-time updates
$webSock = new Server('0.0.0.0:8080', $loop); // Binding to 0.0.0.0 means remotes can connect
$webServer = new IoServer(
new HttpServer(
new WsServer(
new WampServer(
$pusher
)
)
),
$webSock
);
$loop->run();
这是客户端脚本:
var conn = new ab.Session('ws://localhost:8080',
function() {
/* subscribe to following topics */
conn.subscribe('new_order', function(topic, data) ..
同样,在本地设置中也可以正常工作。
还要注意,我的应用程序是使用docker容器中指定的端口托管的。
http://192.168.12.52:8094/xyz/new/....
我还尝试在客户端脚本中指定IP:
var conn = new ab.Session('ws://192.168.12.52:8080',
function() {
/* subscribe to following topics */
conn.subscribe('new_order', function(topic, data) ...
在这种情况下,出现以下错误:
WebSocket connection to 'ws://192.168.11.32:8080/' failed: Error during WebSocket handshake: Unexpected response code: 403
这里缺少什么?
答案 0 :(得分:0)
这可能是SSL证书问题。我认为新的浏览器版本在没有ssl的情况下会出现Web套接字问题。您可能拥有自签名证书。请尝试https://192.168.12.52:8080,如果您看到无效的证书错误(例如:您的连接不安全或您的连接不是私有的),请单击“高级”或添加例外,然后使用相同的浏览器重试。您也可以使用wss://代替ws://。