Webdav Website Links For
Webdav
 

Information About

Webdav




The WebDAV protocol's aim is to make the World Wide Web a readable ''and'' writable medium, in line with Tim Berners-Lee 's original vision. It provides functionality to create, change and move documents on a Remote Server (typically a web server). This is useful, among
other things, for authoring the documents which a web server serves, but can also be used
for general web-based file storage, that can be accessed from anywhere. Most modern
Operating System s provide built-in support for WebDAV, making it as easy to use files on a WebDAV server (almost) as if they were stored in a local Directory .


HISTORY

WebDAV started life when Jim Whitehead convinced the W3C to host two meetings where people interested in the problem of Distributed Authoring on the World Wide Web could get together to discuss possible solutions. The original vision of the World Wide Web as expounded by Tim Berners-Lee was a both readable and writable Medium . In fact Tim's first Web Browser , called WorldWideWeb , was capable of both viewing and editing remote Page s. However as the web grew it turned itself into a read only medium. Jim and other like minded people wanted to fix that limitation.

The group of people meeting at the W3C decided that the best way to proceed was to form an IETF working group. The IETF seemed a natural choice as the HTTP protocol was being standardized there and it was assumed that the output of this effort would consist of Extension s to that Protocol .

As work began on the protocol it became clear that handling both distributed authoring and Versioning was just too much and that the tasks would have to be separated. The WebDAV working group therefore decided to just focus on distributed authoring and leave versioning for the future. In fact members commonly joked that the group should properly be called WebDA.


DOCUMENTS PRODUCED BY THE WORKING GROUP

The WebDAV working group has to date produced several outputs:
  • a requirements document: "Requirements for a Distributed Authoring and Versioning Protocol for the World Wide Web" RFC 2291,

  • a base protocol document: "HTTP Extensions for Distributed Authoring -- WEBDAV" RFC 2518,

  • the ordered collections protocol: "Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol" RFC 3648,

  • the access control protocol: "Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol" RFC 3744,

  • a quota specification: "Quota and Size Properties for Distributed Authoring and Versioning (DAV) Collections" RFC 4331, and

  • a redirect specification: "Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources" RFC 4437.


The protocol consists of a set of new methods and headers for use in HTTP and has the distinction of almost certainly being the first protocol ever to use XML .


DOCUMENTS NOT PRODUCED BY THE WORKING GROUP, BUT PUBLISHED THROUGH THE IETF

  • a specification of WebDAV property datatypes: "Datatypes for Web Distributed Authoring and Versioning (WebDAV) Properties" RFC 4316.



OVERVIEW OF THE PROTOCOL

WebDAV added the following methods to HTTP:
  • PROPFIND — Used to retrieve properties, persisted as XML , from a Resource . It is also Overloaded to allow one to retrieve the collection structure (a.k.a. directory hierarchy) of a Remote System .

  • PROPPATCH — Used to change and delete multiple properties on a resource in a single Atomic Act .

  • MKCOL — Used to create Collection s (a.k.a. Directory ).

  • COPY — Used to copy a resource from one URI to another.

  • MOVE — Used to move a resource from one URI to another.

  • LOCK — Used to put a Lock on a resource, WebDAV supports both shared and exclusive locks.

  • UNLOCK — To remove a lock from a resource.

  • SEARCH — Used to initiate a server-side search.


.

The WebDAV working group is still working on a number of Extension s to WebDAV including - Binding s, and on progressing the base specification to the next maturity level in the
Internet Standard s track.


RELATED WORK

The WebDAV working group spawned other IETF working groups including the DAV Searching And Locating (DASL) working group and the Web Versioning And Configuration Management (DELTAV) working group.

DASL never produced any official standard although there are a number of implementations of its last draft (work continues as non-working-group activity, see DASL ).

DELTAV produced the Versioning Extensions to WebDAV RFC 3253 which put the V back into WebDAV.

The WebDAV Home Page contains up-to-date information about implementations of WebDAV and WebDAV related standards efforts.

CalDAV is a protocol allowing calendar access via WebDAV. CalDAV models calendar events as HTTP resources in ICalendar format, and models calendars containing events as WebDAV collections.

GroupDAV is a variant of WebDAV which allows client/server Groupware systems to store and fetch objects such as calendar items and address book entries instead of web pages.


SOFTWARE SUPPORTING WEBDAV



Servers



Clients



Services



SEE ALSO



EXTERNAL LINKS