Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ive developed an app which needs to upload a small .xml file to a web server, there will be around 15 devices running this app uploading around 15 .xml files each per day. The files need to be uploaded to the same directory.

What would be the best way to achieve this? Im assuming i cant use the same login details for the server on every device, is there any hosting out there that allows multiple different logins?

Thanks. Paul.

share|improve this question

1 Answer 1

up vote 0 down vote accepted

Take a look at Parse.com's data solution. You can set up a free account and have your devices post the data a database using their API. Pretty easy to set up with iOS and for basic services it's free.

share|improve this answer
    
Thank you, ill take a look into it. How reliable is parse.com? –  Paulie Jun 11 '13 at 20:41
    
I've used it successfully in my iOS app and it's Rails back end with no issues for the past 6 months or so. Development was a snap using their library. You also get a nice web GUI to view, search, and edit the data. –  Richard Brown Jun 11 '13 at 20:50
    
Just looking through the documentation now, i think this will save me bundles of time and effort. Thanks a lot. –  Paulie Jun 11 '13 at 20:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.