无法 ws://localhost:8000/socket/server/startDaemon.php 建立与服务器的连接。var socket = new WebSocket(host);

2022-08-31 01:19:17

我正在使用javascript来连接websocket:

<script>
    var socket;  
    var host = "ws://localhost:8000/socket/server/startDaemon.php";  
    var socket = new WebSocket(host);  
</script>

我得到错误:

无法在

var host = "ws://localhost:8000/socket/server/startDaemon.php";
var socket = new WebSocket(host);

我该如何解决这个问题?

注意:我在 mozilla 中启用了 websocket 以支持 Web 套接字应用程序。当我在chrome中运行时,我得到了错误:

   can't establish a connection to the server at ws://localhost:8000/socket/server/startDaemon.php. var socket = new WebSocket(host);

答案 1

显然,firefox 4由于漏洞而禁用了websockets。引用本文:

WebSocket 在 Firefox 4 中被禁用

最近的发现发现,Websocket使用的协议容易受到攻击。亚当·巴特(Adam Barth)展示了一些针对该协议的严重攻击,攻击者可以使用这些攻击来毒害位于浏览器和Internet之间的缓存。


答案 2

我通过此链接按照代码解决了我的错误

http://www.flynsarmy.com/2010/05/php-web-socket-chat-application/ 并创建了 socketWebSocketTrigger.class.php用于响应消息的文件,其中代码为

class socketWebSocketTrigger
{   

        function responseMessage($param)
        {
            $a = 'Unknown parameter';

            if($param == 'age'){
                $a = "Oh dear, I'm 152";
            }

            if($param == 'hello'){
                $a = 'hello, how are you?';
            }

            if($param == 'name'){
                $a = 'my name is Mr. websocket';
            }

            if($param == 'today'){
                $a = date('Y-m-d');
            }

            if($param == 'hi'){
                $a = 'hi there';
            }

            return $a;

        }

}

并在“WebSocketServer.php”的发送函数中添加了代码,用于调用“responseMessage”函数哪个响应请求消息

 public function send($client, $msg){
        $this->say("> ".$msg);
        $messageRequest = json_decode($msg,true);

            // $action=$messageRequest[0];
            $action = 'responseMessage';
            $param  = $messageRequest[1]['data'];
        if( method_exists('socketWebSocketTrigger',$action) ){
                                $response = socketWebSocketTrigger::$action($param);
                            }
            $msg = json_encode(
                array(                      
                'message',
                    array('data' => $response)
                )
            );

            $msg = $this->wrap($msg);

        socket_write($client, $msg, strlen($msg));
    }

它工作得很好。


推荐