2

Is it possible to do remote procedural calls over socket.io in native iOS applications?

Would it be easier to do in a Titanium built application?

fancy
  • 48,619
  • 62
  • 153
  • 231

2 Answers2

4

This Objective-C Socket.IO client library is what you're looking for:

https://github.com/pkyeck/socket.IO-objc

nil
  • 1,192
  • 9
  • 12
0

As long as it's not udp you could probably write a client for it. However, curious on google I found: http://www.ziconic.com/2010/11/simple-ajax-style-rpc-code-in-your-ios.html which will be more of what you want I think. This Using XML-RPC in iPhone apps says that it handles xml on the iphone and there's https://github.com/joyent/node/wiki/modules#wiki-parsers-xml which should help with that.

Hope it helps a bit. RPC documentation in xml is readily available.

Community
  • 1
  • 1
ransom bot
  • 320
  • 1
  • 5