19
votes

Is there any good browser based WebDAV client? If not, is it possible to make one?

6
I can answer your second question. Yes, it is possible.There is nothing software can't do. Except may be making coffee, but I am sure, someone is already working on it. ;) - Peter Schuetze
it can make coffee: tldp.org/HOWTO/Coffee.html - jao
Even coffe shouldn't be a problem if you have a HTCPCP-enabled coffemachine, as described in RFC2324. - Emil Vikström
codefx, what do you mean by "browser based"? Should it run as a plugin to the web browser? - Emil Vikström
I mean without installing any browser plugin on the client side. - codefx

6 Answers

9
votes

Look at the AjaxFileBrowser from ITHit. Pretty slick, and has FireFox & Chrome PUT support for uploading. IE, drag-and-drop from your desktop to the browser. They have a fully functional demo site up at http://www.ajaxbrowser.com.

7
votes

There's a plugin for Firefox which handles WebDAV.

Webfolders is a firefox extension that gives you the ability to view the contents of WebDAV servers in the browser and use the full functionality of the WebDAV protocol.

2
votes

Depends on what you expect the client to do, and whether you're looking for a cross-browser "web application", or a browser extension.

The main issue with doing this in a "web application" (as opposed to a browser extension) is (1) the lack of binary data support in Javascript, and (2) the lack of access to the local file system (which of course is a security feature).

1
votes

If by browser based you mean that it runs in html (ie you don't want your users to install a plugin) then the answer is partly yes and mostly no.

Partly yes, because I have built and used one. It uses the jquery jtree plugin to display folders, and selecting a folder node populates a file list in the right hand panel. Panels are done with another jquery plugin, and the file list is made dynamic with the jquery datatables plugin.

But I think for you the answer is probably "no". Thats because for the browser to use webdav is must user webdav "methods" like PROPFIND and MKCOL. These methods just arent supported in most browsers, so your javascript can't use them directly. I have a server-side mapping in my webdav server project which allows my javascript to use normal GET and POST methods, and these requests are transformed on the server to webdav methods.

I said "probably no" for you since this serve side mapping isnt standard, its a part of milton. But if you happen to use milton, or you can use milton, then its all good.

1
votes

Try SMEStorage.com. They turn any WebDav back-end into a personal cloud file solution. As well as a rich browser desktop and mobile client, there are clients for Mac,Windows, Linux and Mobile clients for Android, iOS, Windows Phone, and BlackBerry.

1
votes

There is webdav-js which can be enabled as a bookmarklet or served by the WebDAV server itself as an HTML page.

It supports the regular listing of files and directories, file upload, directory creation, renaming, as well as in-page display of images and other media.