最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Trouble to get MQTT JavaScript Client running - Stack Overflow

programmeradmin4浏览0评论

I try to get a MQTT JavaScript Client running. It's based on the Eclipse Paho Client Library (org.eclipse.paho.mqtt.javascript.git).

Before running the JavaScript Client I was performing some tests with

  • mosquitto_pub -h test.mosquitto -t "/topic1" -m "test"

and

  • mosquitto_sub -h test.mosquitto -t "/topic1" -v

which are working fine.

Then I called my own mqttTest.html which contains:

<!DOCTYPE html>
<head>

  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  <script type="text/JavaScript" src="mqttws31.js"></script>
  <script type="text/JavaScript">

  var client;

  function doConnect() {

    client = new Messaging.Client("test.mosquitto", 1883, "mosqOtti");
    console.log("Client instantiated.");
    client.startTrace();
    console.log("Now trying to connect...");
    client.connect({onSuccess:onConnect});

  }

  function onConnect() {

    console.log("connection established");
    doSubscribe();

  }

  function doSubscribe() {

      client.subscribe("/topic1");

  }

  window.onload = function() {

      this.doConnect();

  }

</script>
</head> 

.
.
.

</body>
</html>

I tried to lauch this in Firefox. The debug console output tells me that

[09:58:27.825] Firefox can't establish a connection to the server at ws://test.mosquitto:1883/mqtt. @ file:///mqttws31.js:914

I know that moquitto does not support websockets natively. But I red that the lighttp running on test.mosquitto has mod_websockets installed.

Line 914 of mqttws31.js is trying to do this.socket = new WebSocket(wsurl, 'mqttv3.1');

So it seems that

  • either websockets doesn't really work for test.mosquitto
  • or my example is buggy!

I stuggled around for a long time now and need to get a JavaScript MQTT Client running.

Does anyone have an idea? Or another approach? Socket.IO seems not to be the right solution too.

Thanks very much in advance!

I try to get a MQTT JavaScript Client running. It's based on the Eclipse Paho Client Library (org.eclipse.paho.mqtt.javascript.git).

Before running the JavaScript Client I was performing some tests with

  • mosquitto_pub -h test.mosquitto -t "/topic1" -m "test"

and

  • mosquitto_sub -h test.mosquitto -t "/topic1" -v

which are working fine.

Then I called my own mqttTest.html which contains:

<!DOCTYPE html>
<head>

  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  <script type="text/JavaScript" src="mqttws31.js"></script>
  <script type="text/JavaScript">

  var client;

  function doConnect() {

    client = new Messaging.Client("test.mosquitto", 1883, "mosqOtti");
    console.log("Client instantiated.");
    client.startTrace();
    console.log("Now trying to connect...");
    client.connect({onSuccess:onConnect});

  }

  function onConnect() {

    console.log("connection established");
    doSubscribe();

  }

  function doSubscribe() {

      client.subscribe("/topic1");

  }

  window.onload = function() {

      this.doConnect();

  }

</script>
</head> 

.
.
.

</body>
</html>

I tried to lauch this in Firefox. The debug console output tells me that

[09:58:27.825] Firefox can't establish a connection to the server at ws://test.mosquitto:1883/mqtt. @ file:///mqttws31.js:914

I know that moquitto does not support websockets natively. But I red that the lighttp running on test.mosquitto has mod_websockets installed.

Line 914 of mqttws31.js is trying to do this.socket = new WebSocket(wsurl, 'mqttv3.1');

So it seems that

  • either websockets doesn't really work for test.mosquitto
  • or my example is buggy!

I stuggled around for a long time now and need to get a JavaScript MQTT Client running.

Does anyone have an idea? Or another approach? Socket.IO seems not to be the right solution too.

Thanks very much in advance!

Share Improve this question asked Sep 9, 2013 at 8:26 marrrschinemarrrschine 6324 gold badges10 silver badges21 bronze badges 1
  • 1 I think the problem is that the websocket support on test.mosquitto does not share the same port (1883) as the normal mqtt broker. This is because the websocket support uses lighttpd to front for mosquitto. Hopefully Roger can remind us what port is needed. – hardillb Commented Sep 9, 2013 at 9:06
Add a ment  | 

2 Answers 2

Reset to default 5

As @hardillb says, the port you are using is incorrect. 1883 on test.mosquitto is solely for mqtt. If you wish to use websockets you need to connect using port 80. You should just be able to change your url to ws://test.mosquitto:1883/mqtt which presumably means changing your code to

client = new Messaging.Client("test.mosquitto", 80, "mosqOtti");

There is a websockets example (based on this code) running at http://test.mosquitto/sys/. Although it uses the deprecated mosquitto javascript client, it should demonstrate that it works.

The lighttpd config on test.mosquitto is:

websocket.server = (
    "/mqtt" =>
    (  
        "host" => "127.0.0.1",
        "port" => "1883",
        "subproto" => "mqttv3.1",
        "type" => "bin"
    )
)

I had a lot of trouble getting this to work for me and wanted to post solution for Ubuntu that was quickest/easiest for me.

To install lighttpd with websocket support on Ubuntu

Basically, follow this blog post: http://oriolrius.cat/blog/tag/mqtt/

Steps:

1) Add repository for your version of ubuntu from here: https://launchpad/~roger.light/+archive/ppa/

For Ubuntu 12.04 LTS (Precise), the lines are:

deb http://ppa.launchpad/roger.light/ppa/ubuntu precise main
deb-src http://ppa.launchpad/roger.light/ppa/ubuntu precise main

2) Install lighttpd and mod_websocket plugin:

apt-get update
apt-get install lighttpd lighttpd-mod-websocket

3) Add configuration for MQTT websocket somewhere that's included by /etc/lighttpd/lighttpd.conf

server.modules = ( "mod_websocket", )

websocket.server = (
    "/mqtt" => (
        "host" => "127.0.0.1",
        "port" => "1883",
        "type" => "bin",
        "subproto" => "mqttv3.1"
    ),
)

...

4) Optionally, point lighttpd at non-html socket. This worked

server.port = 8080

5) Restart lighttpd, and Javascript client connects to http://hostname:8080. I used Paho Javascript client following mands represented here: https://www.ibm./developerworks/munity/blogs/c565c720-fe84-4f63-873f-607d87787327/entry/how_to_prog_javascript?lang=en

service lighttpd restart
发布评论

评论列表(0)

  1. 暂无评论