[google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2020-02-19 Thread Ward Vanwalleghem
sorry, maybe I wasn't clear. I'm not asking to recommend a public available broker. I have several exiting MQTT brokers I would like to subscribe to from my app engine. As I understand, I can't install gcp-iot-adapter on my app engine. That won't work. And as I don't own the MQTT brokers

[google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2020-02-19 Thread 'Jinjun (Cloud Platform Support)' via Google App Engine
Google Cloud doesn't recommend any publicly available MQTT broker. Some people are using Mosquitto http://www.bytesofgigabytes.com/googlecloud/installing-mqtt-broker-on-google-cloud/ for your reference. -- You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2020-02-15 Thread Ward Vanwalleghem
gcp-iot-adapter is not an option if you don't own the broker... What does Google Cloud service recommends if we want to subscribe to a public available MQTT broker ? On

[google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2017-04-03 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Note, Google Groups is meant for general product discussions and not for technical support. It is recommended you post technical questions on Stack Overflow using the Google Cloud tags. The Google Cloud service that is recommended

Re: [google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2017-04-02 Thread Ravi K
How about just running the client in a backend (service)? I have not been able to get data from a public broker def on_connect(client, userdata, flags, rc): logging.info("Connected with result code "+str(rc)) client.subscribe("#") # wildcard for all topics def on_message(client,

Re: [google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2015-04-15 Thread Vinny P
On Wed, Apr 15, 2015 at 1:45 AM, krishna g krishnagad...@gmail.com wrote: As you are saying that listener socket is not supported in google app engine environment can you provide me any other alternative other than what you provided. You can see it noted in the documentation as well: go to

[google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2015-04-15 Thread krishna g
the problem i am facing is deploying in google app engine, i have seen many forums indicating that add paho library as thrid party library and i have followed the alternatives provided even though in google console log i am getting the same import name error:paho. As you are saying that