Re: How change MQTT QoS using NMS

2014-06-10 Thread Daniel Oliveira Nascimento
Fixed setting QoSPropertyName in Message object. Properties.SetInt("QoSPropertyName", 1); 2014-06-09 20:51 GMT-03:00 Daniel Oliveira Nascimento < daniel.nascime...@devexmining.com>: > I create a producer publishing messages in a topic using NMS, and I have > MQTT consumers for these messages.

Re: How change MQTT QoS using NMS

2014-06-09 Thread Daniel Oliveira Nascimento
I create a producer publishing messages in a topic using NMS, and I have MQTT consumers for these messages. So i'm using activemq as a broker for these messages. I expect that producing messages in a persistent topic, I will consume then in MQTT as QoS 1 or 2, but it didn't happen. My question is

Re: How change MQTT QoS using NMS

2014-06-09 Thread Timothy Bish
On 06/09/2014 04:43 PM, Daniel Oliveira Nascimento wrote: Hi all, I'm trying to publish MQTT QoS 1 messages using NMS, but I can't figure out how to do it. I tried set ackwnoledgmentMode to dupsok and client mode. Also deliveryMode to persistent. But ActiveMQ still deliver the MQTT messages wit

How change MQTT QoS using NMS

2014-06-09 Thread Daniel Oliveira Nascimento
Hi all, I'm trying to publish MQTT QoS 1 messages using NMS, but I can't figure out how to do it. I tried set ackwnoledgmentMode to dupsok and client mode. Also deliveryMode to persistent. But ActiveMQ still deliver the MQTT messages with qos 0 to my subcribed clients. Any idea about what i'm do