Receive MQTT Retained Message With Other Protocol

2019-07-30 Thread noone100
Is it possible to receive a mqtt retained message from a topic using other protocols such as AMQP if the receiving client is not connected to the broker at the moment when the retained message is sent? -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: MQTT 5 Roadmap

2019-06-25 Thread noone100
Thanks for your reply Justin and wildpeanut I don't have the skills to extend the netty codec for MQTT 5. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

MQTT 5 Roadmap

2019-06-24 Thread noone100
Are there any plans to support MQTT 5 in ActiveMQ Artemis in the near future? -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

How to limit the store usage in a shared DB environment

2015-03-11 Thread noone100
storeUsage seems not to be applicable for JdbcPersistenceAdapter, since JdbcPersistenceAdapter.size() always returns 0. Is there any other way to slow down a persistent message producer using JdbcPersistenceAdapter when a DB reaches its limits? Thanks! -- View this message in context:

Re: Transactional Message Lost On Failover

2015-03-10 Thread noone100
Thanks for your reply! So one could argue that the once-and-only-once guarantee of the jms spec cannot be fulfilled in the special edge case, where there's a not yet committed, reply lost happening. -- View this message in context:

Transactional Message Lost On Failover

2015-03-04 Thread noone100
Hi In a transacted session I try to receive a message again after a failover using the failover protocol (see code below). The fail on the broker is triggered using a Byteman script, which kills the jvm right after the method org.apache.activemq.transaction.LocalTransaction.commit(). After