Michael OReilly

Results 11 comments of Michael OReilly

@dguggemos - Care to state which Java client you are now using. This repo seems to be unmaintained for over 1 year. I've looked at moving to the HiveMQ client...

The error 32109 in your logs is not new...... Connection lost (32109) - java.io.EOFException at org.eclipse.paho.client.mqttv3.internal.CommsReceiver.run(CommsReceiver.java:197) at java.base/java.lang.Thread.run(Thread.java:829) Caused by: java.io.EOFException at java.base/java.io.DataInputStream.readByte(DataInputStream.java:272) at org.eclipse.paho.client.mqttv3.internal.wire.MqttInputStream.readMqttWireMessage(MqttInputStream.java:92) at org.eclipse.paho.client.mqttv3.internal.CommsReceiver.run(CommsReceiver.java:137) ... 1 more...

I'm using Paho for an Android client connecting to a Mosquitto broker running Rasbian 10 Specifically $ mosquitto -v mosquitto version 1.5.7 starting lsb_release -a No LSB modules are available....

@rdasgupt - ping -Any chance of a release this side of xmas?

Can you post the error you see in Android Studio/Logcat

I still see this issue in a very basic test app using the latest 6.4.0 JARS. See attached screengrab from Intelij. All JARs are downloaded locally and placed in a...

I recreated the project with Maven, and see it pulls in a bunch more dependencies. I needed okhttp3, okio, logging intercepter + more. Somehow when building with downloaded JAR's, I...

All was working before upgrading to latest github commit. supervisorctl shows 3 running services. I should mention that I have upgrade from Ubuntu20.04LTS ->22.04LTS, got Webvirtcloud running and I'm now...

The MQTT spec does not preserve message ordering. You need to add a serial number to your body if you want to preserve ordering in the client side logic. https://stackoverflow.com/questions/30955110/is-message-order-preserved-in-mqtt-messages/30959058#30959058...

Have you look at the example in the test code? https://github.com/eclipse/paho.mqtt.java/blob/master/org.eclipse.paho.client.mqttv3.test/src/test/java/org/eclipse/paho/client/mqttv3/test/BasicSSLTest.java That uses the "Java" system keystores etc.. I actually use a .crt, .ca and .key file with an SSLUtil...