Pawl icon indicating copy to clipboard operation
Pawl copied to clipboard

Asynchronous WebSocket client

Results 25 Pawl issues
Sort by recently updated
recently updated
newest added

Hello, I've got strange case right now where upon starting the `RabbitMq` `consumer` based on the: - https://github.com/php-amqplib/RabbitMqBundle it causes the websocket server to freeze. It will only send messages...

I can get it to work with a javascript websocket but it will not work with a Pawl websocket. It seems like the handshake always fails and I'm not too...

HI, I would like to retrieve the variable $argv[1] but I can't. ```

Added the ability to set up a keep alive interval that will close the connection if it does not receive a reply in time. I've modeled the code largely after...

Do you intend to implement for us to listen for events through socket.io ? I need this solution for PHP, because I have a nodejs API running and I communicate...

``` $app = function (Ratchet\Client\WebSocket $conn) use ($connector, $loop, &$app, $server_id) { $conn->on('message', function (\Ratchet\RFC6455\Messaging\MessageInterface $msg) use ($conn) { global $server_id; $msg = json_decode($msg); $proc = popen("ping -t 127.0.0.1",'r'); if($msg->type=='run')...

Hi, I'm interacting with Websocket server and the first step I have to implement is - authorize with sending websocket JSON packet. And I'm expecting answer contain Client ID some...

question

Replace SocketClient with HttpClient. HttpClient needs to support 101 header first.

React
blocked

Include only php 7.1 and 7.2 for ppc64le.

I couldn't find a sample in the docs/Readme on how to send binary data. This is one way of doing this: ```php $buffer = "\x63\x7c\x77\x7b\xf2\x6b\x6f\xc5\x30\x01"; // just a sample $conn->send(new...