4

I'm trying to implement a little server service in order to upload files via web browser to my iOS app. An example of this feature is implemented in the following app:

http://itunes.apple.com/uy/app/files-document-reader/id294150896?mt=8

seems to be very simple, but don't know where to start. I've been also looking for clues or some sample codes about this kind of implementation with no success, but maybe just don't know how to google the problem correctly.

Any clues, guides, links, etc...?

Thanks in advance

Omer
  • 5,470
  • 8
  • 39
  • 64
  • I need to transfer a video using aws sdk , video can be more than 1 GB , i think i cant do it with background service in ios , is it possible for me to do it using this type of server ?? – Mr.G Sep 19 '14 at 11:19

1 Answers1

7

Here is a wrapper to embed the moongoose http server in your iphone application. Another simple http server is here. The latter one is the one I used in my application, recently.

EDIT:

There's at least a third one, too.

froh42
  • 5,190
  • 6
  • 30
  • 42
  • I end up using the third option.. some bugs rised, not so easy to handle, but got a pretty stable version by now.. many thanks! – Omer Mar 23 '11 at 22:55
  • The third one... for mac, do you know how can I run this as a daemon without the gui and NSApplicationMain? – karim Jun 17 '15 at 14:09