stomp-php
stomp-php copied to clipboard
Stomp PHP Client
I am trying to connect to stomp over ssl and I get this error ``` SSL/TLS handshake failed ``` My sample: ```
I guess this repos is no longer maintained and superseeded by stomp-php/stomp-php. If you agree it would be great to mention this in the readme of this repos, so we...
I was having problems receiving bytes messages for use with googles / chobies protocolbuffers php implementation with this STOMP implementation. Sending to a Java client worked like a charm, but...
added clientId field in connect method
it is possible to add method to set connection timeout, 60 is a little bit high.
We need to have to set connectionTimeout because 60 is too high for production environnement. When MQ is down, a connection timeout at 60 seconds overload our server.
Change $connect_timeout_seconds and $attempts default values to 10 and 1. ``` public function __construct ($brokerUri, $opts = array(), $connect_timeout_seconds = 60, $attempts = 10) ``` In case you have php.ini...
As I say, when the mq is stopped, something happened like that it will throw loop exception. I think bug is on that place. ``` // force disconnect, if previous...
Stomp 1.0.0 Stomp.php do { $read = fread($this->_socket, $rb); if ($read === false) { $this->_reconnect(); return $this->readFrame(); } $data .= $read; if (strpos($data, "\x00") !== false) { $end = true;...
Hi, I got into a problem when ActiveMQ is not reachable when I try to read a frame. Function nesting level 100 reached, is the fatal error that is thrown....