我在laravel中创建了一个websocket,当我运行“php-cli artisan websocket:serve'在我的cli中套接字运行良好,我可以通过telnet连接到它。当我尝试通过js连接到websocket时,我得到了这个错误。
我的代码如下
的 Websocket.php
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Ratchet\Server\IoServer;
use Ratchet\Http\HttpServer;
use Ratchet\WebSocket\WsServer;
use App\Http\Controllers\ChatController;
class websocket extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'websocket:serve';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a ratchet webscoket';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$server = IoServer::factory(
new HttpServer(
new WsServer(
new ChatController()
)
),
8080, "77.104.129.210"
);
$server->run();
}
}
聊天控制器
<?php
namespace App\Http\Controllers;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
use Illuminate\Http\Request;
class ChatController implements MessageComponentInterface
{
protected $clients;
public function __construct() {
$this->clients = new \SplObjectStorage;
echo "server is now running";
}
public function onOpen(ConnectionInterface $conn) {
// Store the new connection to send messages to later
$this->clients->attach($conn);
echo "New connection! ({$conn->resourceId})\n";
}
public function onMessage(ConnectionInterface $from, $msg) {
$numRecv = count($this->clients) - 1;
echo sprintf('Connection %d sending message "%s" to %d other connection%s' . "\n"
, $from->resourceId, $msg, $numRecv, $numRecv == 1 ? '' : 's');
foreach ($this->clients as $client) {
if ($from !== $client) {
// The sender is not the receiver, send to each client connected
$client->send($msg);
}
}
}
public function onClose(ConnectionInterface $conn) {
// The connection is closed, remove it, as we can no longer send it messages
$this->clients->detach($conn);
echo "Connection {$conn->resourceId} has disconnected\n";
}
public function onError(ConnectionInterface $conn, \Exception $e) {
echo "An error has occurred: {$e->getMessage()}\n";
$conn->close();
}
}
套接字客户端
<!DOCTYPE html>
<html>
<body>
<h1>WebSocket test</h1>
<script>
var conn = new WebSocket('wss://77.104.129.210:8080');
conn.onopen = function(e) {
console.log("Connection established!");
};
conn.onmessage = function(e) {
console.log(e.data);
}
</script>
</body>
</html>
我已经与我们的托管公司联系了这个问题,他们说websockets应该工作正常,它必须是编码问题。然而,我确实将项目本地复制到我的电脑上,而websocket工作得很好,它只是在服务器上才能完成。