stompest
stompest copied to clipboard
STOMP client library for Python including both synchronous and Twisted implementations.
Just in case anyone wants to emulate a browser, this uses `websocket-client` to implement the transport for `stomper`. It's a bit hacky, but it works. You provide a message receive...
`collections.MutableMapping` is deprecated in Python 3.3: ```DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working```...
Hi, When I enable `version=1.2` to use heart-beat, the stompest client successfully to connect on ActiveMQ, but it seems to never send frame to connect on Topic. On ActiveMQ UI,...
I'm trying to use async stompest (2.3.0) with RabbitMq (3.7.18) and almost everything works but the failover feature. I've configured client with failover uri, then restarted the broker and the...
This is a drive-by bug report, I don't use this lib, but I noticed that it will be impossible to use on 3.7+ since `async` becomes a real keyword then....
This will rename all module references of `async` to `twisted` to be compatible with Python 3.7+. I ran the tests but I think the SSL ones failed. Please run your...
The \_\_str\_\_ method _must_ return a string in Python 3 but for StompFrame and StompHeartBeat it returns bytes. For example: >>> from stompest.protocol import StompFrame, StompSpec >>> frame = StompFrame(StompSpec.SEND,...
I'm attempting to authenticate to STOMP on ActiveMQ that requires SSL clients to present a x509 keypair in order to connect. For the stompest sync client, it is really simple,...
so that keep consistent with what described in ActiveMQ server documentation: http://activemq.apache.org/failover-transport-reference.html
Does not work with v6 addresses File "/usr/lib/python2.6/site-packages/stompest-2.1.6-py2.6.egg/stompest/protocol/failover.py", line 189, in _parse raise ValueError('invalid uri: %s [%s]' % (self.uri, msg)) exceptions.ValueError: invalid uri: tcp://xxx:xxx:c081:20::70:65001 [invalid broker(s): 'NoneType' object has no...