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

Without this deflated messages sent by server cannot be handled and the connection closes with exception _Ratchet detected an invalid reserve code_ (thrown by [ratchet/rfc6455/src/Messaging/MessageBuffer.php::270](https://github.com/ratchetphp/RFC6455/blob/master/src/Messaging/MessageBuffer.php#L270)) To improve on this I...

I am quite new to WebSockets and concept of Event Loop. I've got code that buffers all messages and runs some calculations which takes some time to finish. I want...

question

This issue relates to PR #86. Right now calling `close()` only calls `end()` on the underlying socket. This can be problematic if the resource does not close in a timely...

Hi, I developed on local a site with Ratchet and your push server using ZeroMQ. All works fine untill today when I wrote to web provider to install ZeroMQ on...

question

How to implement direct submission of data to the server when sending messages, instead of submitting data after the entire process is completed?

i tried to install [laravel websockets](https://github.com/beyondcode/laravel-websockets) with Pawl and i got a conflict. can you please help me with that !

Of the two original examples, I can get the first to run as a command line fired PHP script. If I put either example into an existing PHP application I...

Hi there. When you try to connect to a wss but the server does not upgrade the websocket, an unhandled promise rejection with DomainException is fired by vendor/ratchet/pawl/src/Connector.php at line...

Using ratchet/pawl v0.4.1 getting following error : PHP Warning: stream_select(): You MUST recompile PHP with a larger value of FD_SETSIZE. It is set to 1024, but you have descriptors numbered...

Using ratchet/pawl v0.4.1 and PHP 7.4 Implemented pub/sub client in PHP... ``` public function publish(string $user, string $group, string $message) { $hubUrl = $this->getHubUrl(); $accessToken = $this->getAccessToken($user); $url = $hubUrl.'?access_token='.$accessToken;...