Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [mosquitto-dev] mosquitto js

Hi Pierre,

I'm glad to hear that mosquitto is working well for you.

Regarding mosquitto.js - you may not have seen that it is deprecated
because I am no longer developing it. The preferred option is the Paho
javascript client.  That's not to say that you can't use mosquitto.js,
but I'm not accepting patches for it so you would have to maintain
your own version.

Regards,

Roger

On Thu, Jun 5, 2014 at 10:04 AM,
<pierre.navarro@xxxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
> Hi all,
>
> First of all thank you for your job!
>
> I am currently working on a middle ware project which implement MQTT
> protocol for event management. This is the reason we used mosquitto
> libraries (C and js) in our project and it works perfectly.
>
> Just concerning the mosquitto-1.1.js we have one problem due to conversion
> of received buffer to int8. We need to used an unsigned int8 so we change in
> this script all lines:
>
> var i8V = new Int8Array(buffer);
> for:
> var i8V = new Uint8Array(buffer);
>
> And now it works for us.
>
> Thanks again.
>
> Pierre
>
>
>
>
>
> _______________________________________________
> mosquitto-dev mailing list
> mosquitto-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/mosquitto-dev
>


Back to the top