I have an iOS app and an Android app. The android app will act as "server" and the iOS app as "client". I want two cases:
To be able from the iOS app to request a file from the android app and download it on the iOS device.
To send a String or an XML file from the iOS app to the Android app, do some stuff in the android app and reply to iOS with a success message or so.
Can you please advice if I can do this directly though sockets or some workaround like creating an http server (like httpd-nano ) on the android app?