Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MQTT client for iPhone

I am trying to follow this blog for building push services for iPhone. The blog uses Android as the working platform,but it can be migrated to iPhone too, provided I get an MQTT client in objective C..which I cant find anywhere. The closest I got to this is :

  1. I got a C implementation here - libmosquitto

  2. This post says I can use something like an HTTP bridge.

Can anyone please help me exploit these two options ? I dont know the next step to take :(

Thanks !!

like image 901
dev Avatar asked Feb 17 '11 17:02

dev


3 Answers

I'm not familiar with Objective C at all, but it seems as though you can compile any C code as Objective C. Would this get round your problem?

If you're using gcc, you can force it to compile as Objective C using "-x objective-c".

like image 145
ralight Avatar answered Oct 06 '22 17:10

ralight


The HTTP option would not help you in this case as you're not trying to talk to a JMS app via MQ (well - you haven't said that is your goal). Your best bet would be to compile something like libmosquitto or one of the other MQTT clients (see list at http://mqtt.org) for the iPhone. There's now a good example https://github.com/njh/marquette which uses mosquitto's libraries on iOS

like image 2
Andy Piper Avatar answered Oct 06 '22 18:10

Andy Piper


I am currently using MQTTKit in my projects. It's fairly easy and straightforward to use.

like image 1
Kiran Avatar answered Oct 06 '22 19:10

Kiran