You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Timothy Bish (JIRA)" <ji...@apache.org> on 2014/08/14 20:24:13 UTC

[jira] [Closed] (AMQ-5040) Issue with Eclipse Paho mobile client and reconnecting due to failure.

     [ https://issues.apache.org/jira/browse/AMQ-5040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timothy Bish closed AMQ-5040.
-----------------------------

    Resolution: Not a Problem

The latest release has many improvements in the area of MQTT.  Try the latest snapshot build which ensures that for MQTT transport connectors the link stealing option is enabled by default.  

> Issue with Eclipse Paho mobile client and reconnecting due to failure.
> ----------------------------------------------------------------------
>
>                 Key: AMQ-5040
>                 URL: https://issues.apache.org/jira/browse/AMQ-5040
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: MQTT
>    Affects Versions: 5.7.0
>         Environment: Ubuntu 12.04
>            Reporter: Aleksandar Stojadinovic
>             Fix For: 5.9.0
>
>
> A similar issue as the original one still exists with the 5.9.0 version. When a connection breaks to the broker, for example a WiFi connection breaks, and the phone reconnects via mobile network, the MqttService retries connecting to the broker. The client responds with "Broker unavailable (3)", and in the broker console the same "already connected" message appears as with the original post.
> The same issue is when the WiFi is turned off, then on. Every reconnect actually results in the same error. 
> The code is more or less identical.
> -------------------------------------
> I built client that is connecting to Apache MQ set for mqtt. 
> Now on first try client establishes the connection with client id = test1, sends message and closes connection
>          if(!client.isConnected()){
> 			client.connect(conOpt);
>         }
>         MqttTopic topic = client.getTopic(topicName);
>         MqttMessage message = new MqttMessage(payload);
>     	message.setQos(qos);
>     	MqttDeliveryToken token = topic.publish(message);
>     	token.waitForCompletion();
>     	client.disconnect();
> Then when again I run client it fails on connect ... I can see log in apache mq log:
>  WARN | Transport Connection to: tcp://127.0.0.1:57354 failed: java.io.IOExcepti
> on: Broker: localhost - Client: test1 already connected from tcp://127.0.0.1:57
> 330
> in connection options I have set only setCleanSession(true). Paho client I have downloaded from site as stable version.
> I have first tried to raise an issue with the Eclipse Paho project (https://bugs.eclipse.org/bugs/show_bug.cgi?id=408105) and after investigation their team came to conclusion that this is not on clinet side



--
This message was sent by Atlassian JIRA
(v6.2#6252)