Message Queue Telemetry Transport - a light on the wire protocol for publish/subscribe. Clients and servers in various languages, C, python, erlang, C#, java

learn more… | top users | synonyms

0
votes
0answers
6 views

Can Apollo convert messages based on consumer protocol?

Does ActiveMQ Apollo automatically convert messages between connected clients protocols ? What I'm trying to do is have one producer use one protocol (STOMP or any other) but let the consumers choose ...
0
votes
1answer
31 views

Most power efficient way of implementing an Android notification app

I'm developing an Android notification app which gets XML data in an MQTT message to build the notification but also contains data to perform an Intent when the Notification is clicked on. I ...
1
vote
2answers
49 views

How can I create a PSK connection between the Eclipse PAHO Java MQTT client and the Mosquitto broker?

I am trying to configure a Pre Shared Key encrypted connection between a mosquitto mqtt broker and an application written in Java which uses the Eclipse Paho client library. I have successfully made ...
1
vote
1answer
28 views

How to implement MQTT in this particular usecase of Android?

My usecase: A user logged into my app, should be able to send messages to himself logged into the app on another Android device. If the user has more than one devices, then once he opens the message, ...
0
votes
1answer
26 views

MQTT is it possible to get back a token number after I publish

I am using MQTT for a POC , What I need is a reference ID for the messages I have published to the topic. There is MqttDeliveryToken , but it do not give a token number as its name. It gives ...
0
votes
1answer
43 views

Which transport protocol does Open MQ use?

I heard a guy from IBM give a talk about MQTT and he said that MQTT is the most lightweight messaging protocol as of today. His argument was that the smallest overhead produced for a single message is ...
0
votes
1answer
37 views

What exactly does mqtt depend on tcp for?

What exactly does mqtt depend on tcp for? As in can it survive without TCP?? I get the connection oriented protocol and stuff but is there more to the relation between MQTT and TCP??
0
votes
0answers
35 views

mqtt/mosquitto/m2m.io unfound documentation

I've created an account on http://www.m2m.io and I'm using it with mosquitto, but it's so recent and the documentation about the parameters of stuff is insufficient. My questions are: what is ...
-1
votes
2answers
76 views

Mosquitto with Cygwin

I want to run Mosquitto on Windows using Cygwin and I have installed Cygwin and downloaded Mosquitto as they describe on Mosquitto's site. I have a simple example-file taken from mosquitto's site. ...
0
votes
1answer
33 views

Callback for when a connection is established in Paho

I'm using the Eclipse MQTT library Paho and I can't find a way to decide when the clients connection to the broker has been established. Does anyone know if there is a way to do this currently? I ...
0
votes
2answers
83 views

How to remotely access a LAN network (embedded) device without port forwarding? [duplicate]

I've looked around SO and haven't found exactly the answer I'm looking for, so please forgive me if this is a duplicate. If so, please direct me to the answer. Thanks. I've got an embedded ...
0
votes
0answers
61 views

How to remotely access a LAN network (embedded) device without port forwarding? [closed]

I've looked around SO and haven't found exactly the answer I'm looking for, so please forgive me if this is a duplicate. If so, please direct me to the answer. Thanks. I've got an embedded ...
0
votes
3answers
146 views

Interpreting an ANR stack trace

I'm working with an implementation of an MQTT client from the PAHO library in Android. Sometimes, the application locks up when it tried to publish a message (I think) and I can't figure out what's ...
3
votes
2answers
264 views

Socket error for client identifier on RSMB MQTT broker when using android

I am building a simple MQTT client for android, and I am getting the "Socket error for client identifier" error on the RMBS console. This only happens in the android implementation of the client ( I ...
2
votes
1answer
158 views

Can a web browser use MQTT?

We are looking at using MQTT as the messaging protocol on a new device we're building. We'd also like a web interface for the device. Does anyone know if you can implement a browser client app ...
0
votes
2answers
77 views

MQTT topics and uniqueness issue

I'm experimenting a bit with MQTT and I've run into a bit of weirdness. It could be due to my specific setup but I thought I'd ask away anyway. I'm using Node.JS and mqttjs as a broker. I'm also ...
1
vote
1answer
83 views

Link Mosquitto with gcc on OSX

I am new to Mosquitto and I am tying to write a simple C client connecting to Mosquitto's test server: http://test.mosquitto.org/ Here is the code of the simple C client which is 99.9% of an example ...
0
votes
2answers
110 views

can MQTT be used to implement Request / Response behavior

We are planning to use MQTT to deliver messages from our server to an android devices we decided to go with the open source server mosquitto. in most of the cases this is enough.(Publishing / ...
0
votes
1answer
61 views

MQTT recv from a publish and mqtt ping C

i've got this problem, in a test program, where i'm developing a client for MQTT, i'm subscribed on a topic, after that, i wait for "publish" message from the server to my client. After a good recv ...
0
votes
2answers
139 views

Simple MQTT Questions

I have some quick questions on the functionality of MQTT and just overall push design. So here's a scenario let's say in Twitter's case; Twitter wants to send push notifications to individual users ...
1
vote
2answers
68 views

messages not retained in Apollo server

I have a problem by using fusesource code to publish mqtt messages to Apollo server. I wrote the message publisher with the code like the following connection.publish(topic, ...
0
votes
1answer
87 views

android background service static field send same msg twice

I have a big problem that i couldn't find solution. Need your help. When i try to send just one message in activity using service , it works. But when i try to send 2 message following another( that ...
0
votes
0answers
61 views

Mqttjs websocket support

I'm experimenting with mqttjs and websockets and I wish to be able to send messages from a webpage using websockets without a bridge to an MQTT broker that is run by mqttjs. I can't find any ...
0
votes
1answer
68 views

how to implement mosquitto push notifition with c#

i've been searching a long time now but i haven't found anything useful yet. I'm trying to implement a Mosquitto-C#-Client. With the release of Mosquitto V1.0 there was a javascript/websocket-client ...
0
votes
1answer
91 views

Pywebsocket “rooms” or “topic” concept

I'm experimenting with different ways to deliver data to some HTML5 pages through MQTT. I've looked at Node.js together with Socket.IO and it seems like a nice solution since Socket.IO has a "room" ...
1
vote
0answers
95 views

Reliable, lightweight communication protocol for mobile [closed]

I am looking for a communication protocol to use in my mobile application. The first target is Android, but it would actually be very nice if it is supported in other platforms like iOS, OSX and ...
1
vote
1answer
47 views

Scheduling mqtt post

I will have a file (text, excel... doesen't matter). On each line of this file there is date, time, and the code for a function. What i need is to execute the function written in my file at the ...
1
vote
1answer
81 views

Rabbitmq Key based Autentication

Background : I am very new to RabbitMq , I just installed it and tried playing with it. So, I Have RabbitMq running on ec2(ubuntu) , and a node.js server as a RabbitMq client running on local machine ...
1
vote
1answer
107 views

Running mqttjs examples with node.js

I'm trying to start playing with node and mqtt and I found this really nice library for the MQTT protocol that integrates it to node.js. The library is simply called mqttjs: ...
1
vote
0answers
245 views

Push notification mechanism used by other apps in Windows Phone

I want to know what push mechanism does gmail, facebook or other common apps use in Windows Phone? Are they using MPNS only or something else (like MQTT). For example, Facebook is available for all ...
3
votes
1answer
173 views

Java client can't receive message from Mosquitto on Android

My Os is Windows 7,32bit. I install mosquitto-1.1.2-install-win32.exe. I don't change the mosquitto.conf file,so no topic prefix setting. Use Mosquitto to subscribe topic like(the subscription ...
0
votes
2answers
455 views

Unable to establish websocket connection using Mosquitto Broker javascript client

I am running a MQTT server (mosquitto) on my windows machine. The service is running on port number 1883. Downloaded the mosquitto.js file from mosquitto.org and making the call as below When I ...
0
votes
1answer
194 views

MQTT Client for node.js TypeError

I try to understand and implement the MQTT-Client for node.js, which can be found at: http://jahbromo.blogspot.de/2011/12/client-mqttt-javascript.html I keep getting: var client = new ...
1
vote
1answer
267 views

MQTT Client for node.js playloads larger than 128 bytes

I try to understand and implement the MQTT-Client for node.js, which can be found at: http://jahbromo.blogspot.de/2011/12/client-mqttt-javascript.html When I publish playloads lower than 128 bytes ...
1
vote
1answer
98 views

Dynamic channels with Android and MQTT

I am documenting on one topic that i am confused about. I am using MQTT with Android. I can successfully register clients and send messages to static channels. I created two channels, and subscribed a ...
1
vote
1answer
217 views

Implementing SSL in MQTT Android connection

I have a question related to the use of MQTT protocol in Android environment. We are developing an Android application and using com.ibm.micro.client.mqttv3_7.5.0.0.jar MQTT client library in order to ...
1
vote
1answer
163 views

MQTT: How to know which msg a puback is for?

I am trying to set up a MQTT server which will persist the messages sent by clients into a local DB. Each message has a "successfully received" flag that I want to flip when receiving clients return a ...
0
votes
1answer
144 views

Read .db file in Mosquitto

I'm using Mosquitto Project (http://mosquitto.org), this is my mosquitto.conf persistence_file mosquitto.db persistence_location C:/var/lib/mosquitto/ After running, I have got ...
0
votes
1answer
321 views

How to config mosquitto.conf in Mosquitto

I'm a newbie and I have used Mosquitto ( http://mosquitto.org ). I have installed it with mosquitto-1.0.5-install-cygwin.exe, and am running it as windows service. But I can't see any log. This is my ...
1
vote
1answer
138 views

Unique topics using MQTT in Android

I am trying MQTT with Mosquitto Broker and Android. It's a very cool protocol very fast. I am still documenting now on how to create unique topics. I can have several topics and client to listen to ...
1
vote
1answer
249 views

android pushing notification with mqtt

How can I save information from an android device to a database when clients first connect to the server, so I can be aware of which device I should push notifications to?
2
votes
2answers
422 views

again: Android MQTT unable to create client

I'm trying to create an MqttClient in Android, using an Android emulator (Nexus7) on ADT (Eclipse 3.8.0 on a Linux Fedora17. I found this question answered (Android MQTT unable to create client), but ...
0
votes
1answer
238 views

Android MQTT unable to create client

I am trying to create an mqtt client in my android service using the paho client library . The mosquitto broker is running on my local machine. I am getting an MqttPersistenceException exception ...
1
vote
2answers
246 views

Library for publish subscriber model with message queueing

I have a C# desktop plugin applications, I need dds implementation for plugin communication, I tried openslicedds, opendds and MQTT messaging protocol. I couldn't find a light-weight solution it, ...
1
vote
0answers
280 views

MQTT Eclipse Paho client on Android, disconnect hangs and never completes

I'm using MQTT in an android application, using the latest jar as found on the Eclipse Paho page. I'm manually checking the connection by sending occasional publishes under a QOS of 1, and if it's ...
1
vote
1answer
720 views

Alternatives to Microsoft Push Notification Service for windows phone 7.0 [closed]

What can be the alternative to MPNS for push notification in windows phone? I can think of something like MQTT or XMPP. Which is best for Push Notification Service among these and where can I get the ...
-1
votes
2answers
316 views

how to set up android mqtt push server

I install xampp-v9 on Windows7 platform ,android open sql apache ,and install mqtt broker ,sure mqtt service is opened,use mqtt php manager server ,when i run ,just show as follos ...
0
votes
1answer
725 views

Windows Phone 8 push notification without MPNS?

We already have a push notification system that consists of Websphere MQTT for server side, and Paho client for Android side. We now want to extend its scope to Windows Phone 8, but as far as I ...
2
votes
1answer
214 views

Eclipse Paho can not keep connection

I tried to using eclipse paho on Mosquitto and ActiveMQ. When keepalive less than 30 seconds, everything is ok. when keepalive more than 30 seconds, server will disconnect it after about 5 mins. ...
2
votes
2answers
754 views

SSL connection from Java client (Eclipse Paho) to mosquitto broker: “unknown_ca”

We are researching a push notifications platform for Android (a failover for Google's C2DM) I am using the Eclipse Paho Java client to connect to mosquitto broker (1.0.3). The broker is installed on ...

1 2 3