How can i transfer data between two device? I would like to transfer data (mostly image file) between different platforms (android,iphone). Is it possible to use p2p or should i use client-server?
Any help will be appreciated.
|
How can i transfer data between two device? I would like to transfer data (mostly image file) between different platforms (android,iphone). Is it possible to use p2p or should i use client-server? Any help will be appreciated. |
|||||||||||
|
|
While p2p is possible in some cases, you will achieve the most widespread compatibility with a client-server architecture, at the cost of having to deploy, power, connect, and maintain servers.
|
|||||||
|
|
Have you looked at Qualcomm's AllJoyn library? It works over Bluetooth or wifi only. The below code is copied from this Incorporating Socket Programming into your Applications
|
|||
|
|
|
If you are OK with Bump, Then they provide an API for the developers to use and its pretty simple to use. Check this out. To see a live demo of transferring between iOS and Android @ youtube. Detailed code snippet and example in Github. PS: i don't belong to bu.mp :). |
|||
|
I would use a WebService. That makes it easier to maintain your service, becuase the Service Implementation is independent of your app. Pro Webservice:
Contra Webservice:
The you should ask yourself the question, how much data is transferred in your communication? Is there a real benefit of using direct connections? |
|||
|
|