2

I am using Red5 + RTMP in a client-server flash application.

There aren't audio/video streams in my application. RTMP is used to transfer messages from app to server and back.

Now I need to develop the application for iPhone:

  1. is there any RTMP implementation on iPhone?
  2. If not, how could I solve this problem? Is there any alternative to RTMP on iPhone?

And most important question: could it be solved without rewriting whole server part of application? (Red5 + RTMP)

franzlorenzon
  • 5,333
  • 6
  • 31
  • 55
IeN
  • 123
  • 1
  • 4

1 Answers1

0

If all you need is to pass "messages" and no a/v, might I suggest using a REST service or something similar such as doing GET or POST requests containing your "message" encoded in some form? Such as JSON or BASE64?

Paul Gregoire
  • 9,350
  • 11
  • 56
  • 128
  • No encoding needed if SSL is used and certificate verification is done. However additional security would not hurt, especially if the goal of the app is to be a very secure for text communications. – Stian OK Mar 18 '15 at 20:19