views:

318

answers:

1

I'm looking for a WebDAV server - best Open Source - for iPhone and iPad for integration in my app. It should be possible to list, download and upload files. I would like to point the server root on the 'Documents' folder of my app, so the methods should be mapped directly to the file system if possible.

On my search through the internet I came around some suggestions, but they did not work for me:

  1. touchcode - the WebDAV server part can be found unter 'Experimental' and I was not able to get it running. Maybe someone has a working release of it?

  2. iSharing - this seemed to be a commercial solution which now has been dropped by the developer. I was not able to find more info about it.

  3. CocoaHTTPServer - an Apple sample project of a simple HTTP Server. Apple employees themselves write non their support list that this would be a good starting point, though I was not able to find a WebDAV addition for it. Maybe there is one?

So that's what I was able to find so far. Hint would be very appreciated. Thanks.

A: 

I would suggest taking a look at IT Hit WebDAV Server Engine:

The NtfsStorage sample provided with .Net server SDK stores all data in file system. There are plenty of documentation:

class reference:

and they are mature enough.

This looks like a valuable professional solution for other operating systems. But in my case it doesn't seem to fit since I don't see a way for embedding it into an iOS app. At iOS you are constricted to the use of C, C++ or Obective-C. Anyway, thanks a lot for pointing on this solution which I didn't know before.
Holtwick