WebSocketBundle icon indicating copy to clipboard operation
WebSocketBundle copied to clipboard

:part_alternation_mark: Websocket server for Symfony applications (powered by Ratchet), includes a Autobahn.JS based JavaScript client

Results 46 WebSocketBundle issues
Sort by recently updated
recently updated
newest added

Following javascript client instructions here: https://github.com/GeniusesOfSymfony/WebSocketBundle/blob/3.x/docs/javascript-client.md I got this error on my firefox Uncaught ReferenceError: GosSocket is not defined This the final html I have (simplified at maximum) is this:...

After executing composer require gos/web-socket-bundle I got this error when cache:clear is executed: In GosWebSocketExtension.php line 278: Warning: Undefined array key "port" Extra info: PHP 8.1.8 Symfony 6.1.3 with dockerized...

Hi, I want to send message to my websocket Topic from controller. I found documentation for version 2 but for version 3 is missing. Have I use symfony/messenger for version...

services.yml ``` gos_web_socket: server: port: 8888 # The port the socket server will listen on host: 127.0.0.1 # The host ip to bind to router: resources: - '%kernel.project_dir%/config/pubsub/routing.yaml' client: firewall:...

question

Hi there, i received the following Error: ` request.CRITICAL: Uncaught PHP Exception PDOException: "SQLSTATE[70100]: : 1907 Query execution was interrupted, query_timeout exceeded" at /var/www/vendor/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php line 337 {"exception":"[object] (PDOException(code: 70100): SQLSTATE[70100]:...

Hi, something went wrong me. My websocket worked recently fine but now I cant estabilish connection. May related this error? I am not sure if it is User deprecated or...

Hi, I had working chat in my web applicatin 2 months ago but something happend and now is my chat broken. I don`t know why. When I run my websocket...

Hello ALL ! My project is ok on my local but i try to push my project on my dev server ... this is my config.yml file gos_web_socket: server: port:...

Hi, I have setup a basic PDO Session system to get user information for my websocket chat. The sessions are working cause Symfony create new sessions in my database. But...

Hello, is it possible to AUTH the user on socket connect with a JWT token? Something like socketio-jwt does. I use lexik/LexikJWTAuthenticationBundle for JWT generation and security handling.