我正在使用clank bundle,我想测试socket服务器是否正常运行 我已将配置设置如下:
# Clank Configuration
clank:
web_socket_server:
port: 8080 #The port the socket server will listen on
host: domain.com #(optional) The host ip to bind to
端口8080已打开并经过测试
添加两个js文件后:autobahn.min.js
和clank.js
我执行以下操作:
var myClank = Clank.connect("wss://domain.com:8080"); // I use SSL
myClank.on("socket/connect", function(session){
//session is an Autobahn JS WAMP session.
console.log("Successfully Connected!");
})
myClank.on("socket/disconnect", function(error){
//error provides us with some insight into the disconnection: error.reason and error.code
console.log("Disconnected for " + error.reason + " with code " + error.code);
})
请注意,服务器已在使用以下命令运行:
php app/console clank:server
问题是我无法在控制台中获取成功消息。当我停止clank服务器时,它会输出失败消息。 我不知道发生了什么,请帮助我..