Questions tagged [moquette]

Moquette aims to be a MQTT compliant broker. It is written in Java.

Moquette aims to be a compliant broker. The broker supports 0, 1, and 2. It is written in .

Its designed to be evented, uses for the encoding and decoding part, the protocol logic is essentially a single threaded and it's isolated from front connectors part by disruptor's ring buffer.

For more information, see the GitHub page.

19 questions
0
votes
2 answers

Using mqtt along with tomcat

I wanted to use both http and mqtt features together so i tried using tomcat along with moquette as a shown below but ended up getting "java.net.BindException: Address already in use" . If there's some better way then let me know. public class…
Arpit Khurana
  • 144
  • 2
  • 14
0
votes
0 answers

how to publish and subscribe using same BlockingConnection object

I am trying to publish and subscribe data to MQTT using below my code, try{ ObjectMapper mapper = new ObjectMapper(); MqttMessage message2 = new MqttMessage(); MQTT mqtt_connect = new MQTT(); mqtt_connect.setHost(Host_Address,…
MMMMS
  • 2,179
  • 9
  • 43
  • 83
0
votes
1 answer

moquette users have privilege different than what is written in the access control list

I am using moquette as my MQTT broker. I specify an access control file in my config as this: acl_file acl.conf and then in the acl.conf file, I added just one user as this: user gravity topic read in topic write out My problem The user gravity is…
William Kinaan
  • 28,059
  • 20
  • 85
  • 118
0
votes
1 answer

Not getting published message from MQTT broker in Paho client

I have setup a Moquette MQTT broker and connected it with eclipse Paho client (I will call this paho1). Subscribing to in/# topic. I created another Paho client (I will call this paho2), with a different client id of course, and published it to the…
Jae Park
  • 621
  • 4
  • 13
  • 27
1
2