Hi all,

I'm building a Web service that must accept small (1-50k) files pushed to it
via the WebDAV protocol. I would like the Web server's DAV service to
process the files immediately (stuffing the contents into a MySQL table). I
also want to prevent any users from reading any files present (return an
empty directory), while still allowing writing clients to read back what
they wrote for a short time, say, a few minutes from the same IP, so that
their DAV writes don't fail. I would like to check the filenames of the
incoming writes and reject any that don't match an active user's ID (my form
of auth). Otherwise, access to the drop directory would be completely open
(no auth). 

To accomplish all this, I thought I'd create a modified version of mod_dav
for Apache and run this non-standard config on a dedicated box. 

Anybody WebDAV experts out there with an opinion on my thinking here?  Am I
nuts to try this?

Reply via email to