Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any iOS implementation of the Bayeux protocol (COMET, server push to client)?

Is there any library with implementation of the Bayeux protocol, for use in iOS (iPhone/iPad) development, for the building Server push technology iPhone client?

And what are your suggestion for doing this?

like image 618
marko Avatar asked Dec 30 '25 11:12

marko


2 Answers

Even though I haven't tried it, I would check FayeObjC:

"A simple Objective-C client library for the Faye publish-subscribe messaging server. FayeObjC is implementing on top of the zimt Objective-C web socket library and will work on both Mac and iPhone projects. JSON parsing is handled using the excellent JSONKit (github.com/johnezang/JSONKit) library which is included in the FayeObjC source folder."

For more info: http://blog.cometcoast.com/post/3668374972/fayeobjc-an-objective-c-faye-client-for-ios-mac-os

Sources: https://github.com/pcrawfor/FayeObjC

like image 98
titusmagnus Avatar answered Jan 01 '26 15:01

titusmagnus


I know that this question is fairly old, but I googled and found it. Maybe this answer can help someone else:

Take a look at ddunkin cometclient library: https://github.com/ddunkin/cometclient

I haven't tested but will try it with my next project.