<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc-ext allow-markup-in-artwork="yes"?>
<?rfc-ext include-references-in-index="yes" ?>

<!DOCTYPE rfc [
  <!ENTITY MAY "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>MAY</bcp14>">
  <!ENTITY MUST "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>MUST</bcp14>">
  <!ENTITY MUST-NOT "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>MUST NOT</bcp14>">
  <!ENTITY OPTIONAL "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>OPTIONAL</bcp14>">
  <!ENTITY RECOMMENDED "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>RECOMMENDED</bcp14>">
  <!ENTITY REQUIRED "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>REQUIRED</bcp14>">
  <!ENTITY SHALL "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>SHALL</bcp14>">
  <!ENTITY SHALL-NOT "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>SHALL NOT</bcp14>">
  <!ENTITY SHOULD "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>SHOULD</bcp14>">
  <!ENTITY SHOULD-NOT "<bcp14 xmlns='http://purl.org/net/xml2rfc/ext'>SHOULD NOT</bcp14>">
]>
<rfc number="2518" category="std" xmlns:x='http://purl.org/net/xml2rfc/ext' xmlns:grddl='http://www.w3.org/2003/g/data-view#' grddl:transformation='rfc2629grddl.xslt'>
  <x:assign-section-number number="22" builtin-target="authors"/>

  <front>
    <title abbrev="WEBDAV">HTTP Extensions for Distributed Authoring -- WEBDAV</title>
    <author initials="Y." surname="Goland" fullname="Y. Y. Goland">
      <organization abbrev="Microsoft">Microsoft Corporation</organization>
      <address>
        <postal>
          <street>One Microsoft Way</street>
          <city>Redmond</city><region>WA</region><code>98052-6399</code>
        </postal>
        <email>yarong@microsoft.com</email>
      </address>
    </author>
    <author initials="E." surname="Whitehead" fullname="E. J. Whitehead, Jr.">
      <organization abbrev="UC Irvine">Dept. Of Information and Computer Science,
      University of California, Irvine</organization>
      <address>
        <postal>
          <street/>
          <city>Irvine</city><region>CA</region><code>92697-3425</code>
        </postal>
        <email>ejw@ics.uci.edu</email>
      </address>
    </author>
    <author initials="A." surname="Faizi" fullname="A. Faizi">
      <organization abbrev="Netscape">Netscape</organization>
      <address>
        <postal>
          <street>685 East Middlefield Road</street>
          <city>Mountain View</city><region>CA</region><code>94043</code>
        </postal>
        <email>asad@netscape.com</email>
      </address>
    </author>
    <author initials="S.R." surname="Carter" fullname="S. R. Carter">
      <organization abbrev="Novell">Novell</organization>
      <address>
        <postal>
          <street>1555 N. Technology Way</street>
          <street>M/S ORM F111</street>
          <city>Orem</city><region>UT</region><code>84097-2399</code>
        </postal>
        <email>srcarter@novell.com</email>
      </address>
    </author>
    <author initials="D." surname="Jensen" fullname="D. Jensen">
      <organization abbrev="Novell">Novell</organization>
      <address>
        <postal>
          <street>1555 N. Technology Way</street>
          <street>M/S ORM F111</street>
          <city>Orem</city><region>UT</region><code>84097-2399</code>
        </postal>
        <email>dcjensen@novell.com</email>
      </address>
    </author>
    <date month="February" year="1999" />
	  <abstract>    
      <t>
       This document specifies a set of methods, headers, and content-types
       ancillary to HTTP/1.1 for the management of resource properties,
       creation and management of resource collections, namespace
       manipulation, and resource locking (collision avoidance).
      </t>
	</abstract>
</front>

<middle>
<section title="Introduction">
<t>
   This document describes an extension to the HTTP/1.1 protocol that
   allows clients to perform remote web content authoring operations.
   This extension provides a coherent set of methods, headers, request
   entity body formats, and response entity body formats that provide
   operations for:
</t>
<t>
   Properties: The ability to create, remove, and query information
   about Web pages, such as their authors, creation dates, etc. Also,
   the ability to link pages of any media type to related pages.
</t>
<t>
   Collections: The ability to create sets of documents and to retrieve
   a hierarchical membership listing (like a directory listing in a file
   system).
</t>
<t>
   Locking: The ability to keep more than one person from working on a
   document at the same time. This prevents the "lost update problem,"
   in which modifications are lost as first one author then another
   writes changes without merging the other author's changes.
</t>
<t>
   Namespace Operations: The ability to instruct the server to copy and
   move Web resources.
</t>
<t>
   Requirements and rationale for these operations are described in a
   companion document, "Requirements for a Distributed Authoring and
   Versioning Protocol for the World Wide Web" <xref target="RFC2291" />.
</t>
<t>
   The sections below provide a detailed introduction to resource
   properties (<xref target="data.model.for.resource.properties"/>), collections of resources (<xref target="collections.of.web.resources"/>), and
   locking operations (<xref target="locking"/>).  These sections introduce the
   abstractions manipulated by the WebDAV-specific HTTP methods
   described in <xref target="http.methods.for.distributed.authoring"/>, "HTTP Methods for Distributed Authoring".
</t>
<t>
   In HTTP/1.1, method parameter information was exclusively encoded in
   HTTP headers. Unlike HTTP/1.1, WebDAV encodes method parameter
   information either in an Extensible Markup Language (XML) <xref target="REC-XML" />
   request entity body, or in an HTTP header.  The use of XML to encode
   method parameters was motivated by the ability to add extra XML
   elements to existing structures, providing extensibility; and by
   XML's ability to encode information in ISO 10646 character sets,
   providing internationalization support. As a rule of thumb,
   parameters are encoded in XML entity bodies when they have unbounded
   length, or when they may be shown to a human user and hence require
   encoding in an ISO 10646 character set.  Otherwise, parameters are
   encoded within HTTP headers.  <xref target="http.headers.for.distributed.authoring"/> describes the new HTTP
   headers used with WebDAV methods.
</t>
<t>
   In addition to encoding method parameters, XML is used in WebDAV to
   encode the responses from methods, providing the extensibility and
   internationalization advantages of XML for method output, as well as
   input.
</t>
<t>
   XML elements used in this specification are defined in <xref target="xml.element.definitions"/>.
</t>
<t>
   The XML namespace extension (<xref target="xml.namespaces.for.webdav"/>) is also used in this
   specification in order to allow for new XML elements to be added
   without fear of colliding with other element names.
</t>
<t>
   While the status codes provided by HTTP/1.1 are sufficient to
   describe most error conditions encountered by WebDAV methods, there
   are some errors that do not fall neatly into the existing categories.
   New status codes developed for the WebDAV methods are defined in
   <xref target="status.code.extensions.to.http11"/>.  Since some WebDAV methods may operate over many
   resources, the Multi-Status response has been introduced to return
   status information for multiple resources.  The Multi-Status response
   is described in <xref target="multi-status.response"/>.
</t>
<t>
   WebDAV employs the property mechanism to store information about the
   current state of the resource.  For example, when a lock is taken out
   on a resource, a lock information property describes the current
   state of the lock. <xref target="dav.properties"/> defines the properties used within the
   WebDAV specification.
</t>
<t>
   Finishing off the specification are sections on what it means to be
   compliant with this specification (<xref target="dav.compliance.classes"/>), on
   internationalization support (<xref target="internationalization.considerations"/>), and on security (<xref target="security.considerations"/>).
</t>
</section>


<section title="Notational Conventions">
<t>
   Since this document describes a set of extensions to the HTTP/1.1
   protocol, the augmented BNF used herein to describe protocol elements
   is exactly the same as described in section <xref target="RFC2068" x:fmt="number" x:sec="2.1"/> of <xref target="RFC2068" />.  Since
   this augmented BNF uses the basic production rules provided in
   section <xref target="RFC2068" x:fmt="number" x:sec="2.2"/> of <xref target="RFC2068" />, these rules apply to this document as well.
</t>
<t>
   The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
   "SHOULD", SHOULD NOT", "RECOMMENDED",  "MAY", and "OPTIONAL" in this
   document are to be interpreted as described in RFC 2119 <xref target="RFC2119" />.
</t>
</section>

<section title="Terminology">
<t>
  <iref item="URI" />
  <iref item="URL" />
   <x:dfn>URI</x:dfn>/<x:dfn>URL</x:dfn> - A Uniform Resource Identifier and Uniform Resource Locator,
   respectively. These terms (and the distinction between them) are
   defined in <xref target="RFC2396" />.
</t>
<t>
  <iref item="Collection"/>
   <x:dfn>Collection</x:dfn> - A resource that contains a set of URIs, termed member
   URIs, which identify member resources and meets the requirements in
   <xref target="collections.of.web.resources"/> of this specification.
</t>
<t>
  <iref item="Member URI"/>
   <x:dfn>Member URI</x:dfn> - A URI which is a member of the set of URIs contained by
   a collection.
</t>
<t>
  <iref item="Internal Member URI"/>
   <x:dfn>Internal Member URI</x:dfn> - A Member URI that is immediately relative to
   the URI of the collection (the definition of immediately relative is
   given in <xref target="collection.resources"/>).
</t>
<t>
  <iref item="Property"/>
   <x:dfn>Property</x:dfn> - A name/value pair that contains descriptive information
   about a resource.
</t>
<t>
  <iref item="Live Property"/>
   <x:dfn>Live Property</x:dfn> - A property whose semantics and syntax are enforced by
   the server.  For example, the live "getcontentlength" property has
   its value, the length of the entity returned by a GET request,
   automatically calculated by the server.
</t>
<t>
  <iref item="Dead Property"/>
   <x:dfn>Dead Property</x:dfn> - A property whose semantics and syntax are not
   enforced by the server.  The server only records the value of a dead
   property; the client is responsible for maintaining the consistency
   of the syntax and semantics of a dead property.
</t>
<t>
  <iref item="Null Resource"/>
   <x:dfn>Null Resource</x:dfn> - A resource which responds with a 404 (Not Found) to
   any HTTP/1.1 or DAV method except for PUT, MKCOL, OPTIONS and LOCK.
   A NULL resource &MUST-NOT; appear as a member of its parent collection.
</t>
</section>

<section title="Data Model for Resource Properties" anchor="data.model.for.resource.properties">

<section title="The Resource Property Model">
<t>
   Properties are pieces of data that describe the state of a resource.
   Properties are data about data.
</t>
<t>
   Properties are used in distributed authoring environments to provide
   for efficient discovery and management of resources.  For example, a
   'subject' property might allow for the indexing of all resources by
   their subject, and an 'author' property might allow for the discovery
   of what authors have written which documents.
</t>
<t>
   The DAV property model consists of name/value pairs.  The name of a
   property identifies the property's syntax and semantics, and provides
   an address by which to refer to its syntax and semantics.
</t>
<t>
   There are two categories of properties: "live" and "dead".  A live
   property has its syntax and semantics enforced by the server. Live
   properties include cases where a) the value of a property is read-only,
   maintained by the server, and b) the value of the property is
   maintained by the client, but the server performs syntax checking on
   submitted values. All instances of a given live property &MUST; comply
   with the definition associated with that property name.  A dead
   property has its syntax and semantics enforced by the client; the
   server merely records the value of the property verbatim.
</t>
</section>

<section title="Existing Metadata Proposals">
<t>
   Properties have long played an essential role in the maintenance of
   large document repositories, and many current proposals contain some
   notion of a property, or discuss web metadata more generally.  These
   include PICS <xref target="REC-PICS" />, PICS-NG, XML, Web Collections, and several
   proposals on representing relationships within HTML. Work on PICS-NG
   and Web Collections has been subsumed by the Resource Description
   Framework (RDF) metadata activity of the World Wide Web Consortium.
   RDF consists of a network-based data model and an XML representation
   of that model.
</t>
<t>
   Some proposals come from a digital library perspective.  These
   include the Dublin Core <xref target="RFC2413" /> metadata set and the Warwick
   Framework <xref target="WF" />, a container architecture for different metadata
   schemas.  The literature includes many examples of metadata,
   including MARC <xref target="USMARC" />, a bibliographic metadata format, and a
   technical report bibliographic format employed by the Dienst system
   <xref target="RFC1807" />. Additionally, the proceedings from the first IEEE Metadata
   conference describe many community-specific metadata sets.
</t>
<t>
   Participants of the 1996 Metadata II Workshop in Warwick, UK <xref target="WF" />,
   noted that "new metadata sets will develop as the networked
   infrastructure matures" and "different communities will propose,
   design, and be responsible for different types of metadata." These
   observations can be corroborated by noting that many community-specific
   sets of metadata already exist, and there is significant
   motivation for the development of new forms of metadata as many
   communities increasingly make their data available in digital form,
   requiring a metadata format to assist data location and cataloging.
</t>
</section>

<section title="Properties and HTTP Headers">
<t>
   Properties already exist, in a limited sense, in HTTP message
   headers.  However, in distributed authoring environments a relatively
   large number of properties are needed to describe the state of a
   resource, and setting/returning them all through HTTP headers is
   inefficient.  Thus a mechanism is needed which allows a principal to
   identify a set of properties in which the principal is interested and
   to set or retrieve just those properties.
</t>
</section>

<section title="Property Values">
<t>
   The value of a property when expressed in XML &MUST; be well formed.
</t>
<t>
   XML has been chosen because it is a flexible, self-describing,
   structured data format that supports rich schema definitions, and
   because of its support for multiple character sets.  XML's self-describing
   nature allows any property's value to be extended by
   adding new elements.  Older clients will not break when they
   encounter extensions because they will still have the data specified
   in the original schema and will ignore elements they do not
   understand.  XML's support for multiple character sets allows any
   human-readable property to be encoded and read in a character set
   familiar to the user.  XML's support for multiple human languages,
   using the "xml:lang" attribute, handles cases where the same
   character set is employed by multiple human languages.
</t>
</section>

<section title="Property Names">
<t>
   A property name is a universally unique identifier that is associated
   with a schema that provides information about the syntax and
   semantics of the property.
</t>
<t>
   Because a property's name is universally unique, clients can depend
   upon consistent behavior for a particular property across multiple
   resources, on the same and across different servers, so long as that
   property is "live" on the resources in question, and the
   implementation of the live property is faithful to its definition.
</t>
<t>
   The XML namespace mechanism, which is based on URIs <xref target="RFC2396" />, is
   used to name properties because it prevents namespace collisions and
   provides for varying degrees of administrative control.
</t>
<t>
   The property namespace is flat; that is, no hierarchy of properties
   is explicitly recognized.  Thus, if a property A and a property A/B
   exist on a resource, there is no recognition of any relationship
   between the two properties.  It is expected that a separate
   specification will eventually be produced which will address issues
   relating to hierarchical properties.
</t>
<t>
   Finally, it is not possible to define the same property twice on a
   single resource, as this would cause a collision in the resource's
   property namespace.
</t>
</section>

<section title="Media Independent Links">
<t>
   Although HTML resources support links to other resources, the Web
   needs more general support for links between resources of any media
   type (media types are also known as MIME types, or content types).
   WebDAV provides such links. A WebDAV link is a special type of
   property value, formally defined in <xref target="ELEMENT_link"/>, that allows typed
   connections to be established between resources of any media type.
   The property value consists of source and destination Uniform
   Resource Identifiers (URIs); the property name identifies the link
   type.
</t>
</section>

</section>

<section title="Collections of Web Resources" anchor="collections.of.web.resources">
<t>
   This section provides a description of a new type of Web resource,
   the collection, and discusses its interactions with the HTTP URL
   namespace. The purpose of a collection resource is to model
   collection-like objects (e.g., file system directories) within a
   server's namespace.
</t>
<t>
   All DAV compliant resources &MUST; support the HTTP URL namespace model
   specified herein.
</t>

<section title="HTTP URL Namespace Model" anchor="http.url.namespace.model">
<t>
   The HTTP URL namespace is a hierarchical namespace where the
   hierarchy is delimited with the "/" character.
</t>
<t>
   An HTTP URL namespace is said to be consistent if it meets the
   following conditions: for every URL in the HTTP hierarchy there
   exists a collection that contains that URL as an internal member.
   The root, or top-level collection of the namespace under
   consideration is exempt from the previous rule.
</t>
<t>
   Neither HTTP/1.1 nor WebDAV require that the entire HTTP URL
   namespace be consistent.  However, certain WebDAV methods are
   prohibited from producing results that cause namespace
   inconsistencies.
</t>
<t>
   Although implicit in <xref target="RFC2068" /> and <xref target="RFC2396" />, any resource, including
   collection resources, &MAY; be identified by more than one URI. For
   example, a resource could be identified by multiple HTTP URLs.
</t>
</section>


<section title="Collection Resources" anchor="collection.resources">
<t>
   A collection is a resource whose state consists of at least a list of
   internal member URIs and a set of properties, but which may have
   additional state such as entity bodies returned by GET.  An internal
   member URI &MUST; be immediately relative to a base URI of the
   collection.  That is, the internal member URI is equal to a
   containing collection's URI plus an additional segment for non-collection
   resources, or additional segment plus trailing slash "/"
   for collection resources, where segment is defined in section <xref target="RFC2396" x:fmt="number" x:sec="3.3"/> of
   <xref target="RFC2396" />.
</t>
<t>
   Any given internal member URI &MUST; only belong to the collection
   once, i.e., it is illegal to have multiple instances of the same URI
   in a collection.  Properties defined on collections behave exactly as
   do properties on non-collection resources.
</t>
<t>
   For all WebDAV compliant resources A and B, identified by URIs U and
   V, for which U is immediately relative to V, B &MUST; be a collection
   that has U as an internal member URI. So, if the resource with URL
   http://foo.com/bar/blah is WebDAV compliant and if the resource with
   URL http://foo.com/bar/ is WebDAV compliant then the resource with
   URL http://foo.com/bar/ must be a collection and must contain URL
   http://foo.com/bar/blah as an internal member.
</t>
<t>
   Collection resources &MAY; list the URLs of non-WebDAV compliant
   children in the HTTP URL namespace hierarchy as internal members but
   are not required to do so. For example, if the resource with URL
   http://foo.com/bar/blah is not WebDAV compliant and the URL
   http://foo.com/bar/ identifies a collection then URL
   http://foo.com/bar/blah may or may not be an internal member of the
   collection with URL http://foo.com/bar/.
</t>
<t>
   If a WebDAV compliant resource has no WebDAV compliant children in
   the HTTP URL namespace hierarchy then the WebDAV compliant resource
   is not required to be a collection.
</t>
<t>
   There is a standing convention that when a collection is referred to
   by its name without a trailing slash, the trailing slash is
   automatically appended.  Due to this, a resource may accept a URI
   without a trailing "/" to point to a collection. In this case it
   &SHOULD; return a content-location header in the response pointing to
   the URI ending with the "/".  For example, if a client invokes a
   method on http://foo.bar/blah (no trailing slash), the resource
   http://foo.bar/blah/ (trailing slash) may respond as if the operation
   were invoked on it, and should return a content-location header with
   http://foo.bar/blah/ in it.  In general clients &SHOULD; use the "/"
   form of collection names.
</t>
<t>
   A resource &MAY; be a collection but not be WebDAV compliant.  That is,
   the resource may comply with all the rules set out in this
   specification regarding how a collection is to behave without
   necessarily supporting all methods that a WebDAV compliant resource
   is required to support.  In such a case the resource may return the
   DAV:resourcetype property with the value DAV:collection but &MUST-NOT;
   return a DAV header containing the value "1" on an OPTIONS response.
</t>
</section>

<section title="Creation and Retrieval of Collection Resources">
<t>
   This document specifies the MKCOL method to create new collection
   resources, rather than using the existing HTTP/1.1 PUT or POST
   method, for the following reasons:
</t>
<t>
   In HTTP/1.1, the PUT method is defined to store the request body at
   the location specified by the Request-URI.  While a description
   format for a collection can readily be constructed for use with PUT,
   the implications of sending such a description to the server are
   undesirable.  For example, if a description of a collection that
   omitted some existing resources were PUT to a server, this might be
   interpreted as a command to remove those members.  This would extend
   PUT to perform DELETE functionality, which is undesirable since it
   changes the semantics of PUT, and makes it difficult to control
   DELETE functionality with an access control scheme based on methods.
</t>
<t>
   While the POST method is sufficiently open-ended that a "create a
   collection" POST command could be constructed, this is undesirable
   because it would be difficult to separate access control for
   collection creation from other uses of POST.
</t>
<t>
   The exact definition of the behavior of GET and PUT on collections is
   defined later in this document.
</t>
</section>

<section title="Source Resources and Output Resources">
<t>
   For many resources, the entity returned by a GET method exactly
   matches the persistent state of the resource, for example, a GIF file
   stored on a disk.  For this simple case, the URI at which a resource
   is accessed is identical to the URI at which the source (the
   persistent state) of the resource is accessed.  This is also the case
   for HTML source files that are not processed by the server prior to
   transmission.
</t>
<t>
   However, the server can sometimes process HTML resources before they
   are transmitted as a return entity body.  For example, a server-side-include
   directive within an HTML file might instruct a server to
   replace the directive with another value, such as the current date.
   In this case, what is returned by GET (HTML plus date) differs from
   the persistent state of the resource (HTML plus directive).
   Typically there is no way to access the HTML resource containing the
   unprocessed directive.
</t>
<t>
   Sometimes the entity returned by GET is the output of a data-producing
   process that is described by one or more source resources
   (that may not even have a location in the URI namespace).  A single
   data-producing process may dynamically generate the state of a
   potentially large number of output resources.  An example of this is
   a CGI script that describes a "finger" gateway process that maps part
   of the namespace of a server into finger requests, such as
   http://www.foo.bar.org/finger_gateway/user@host.
</t>
<t>
   In the absence of distributed authoring capabilities, it is
   acceptable to have no mapping of source resource(s) to the URI
   namespace. In fact, preventing access to the source resource(s) has
   desirable security benefits.  However, if remote editing of the
   source resource(s) is desired, the source resource(s) should be given
   a location in the URI namespace.  This source location should not be
   one of the locations at which the generated output is retrievable,
   since in general it is impossible for the server to differentiate
   requests for source resources from requests for process output
   resources.  There is often a many-to-many relationship between source
   resources and output resources.
</t>
<t>
   On WebDAV compliant servers the URI of the source resource(s) may be
   stored in a link on the output resource with type DAV:source (see
   <xref target="PROPERTY_source"/> for a description of the source link property).
   Storing the source URIs in links on the output resources places the
   burden of discovering the source on the authoring client.  Note that
   the value of a source link is not guaranteed to point to the correct
   source.  Source links may break or incorrect values may be entered.
   Also note that not all servers will allow the client to set the
   source link value.  For example a server which generates source links
   on the fly for its CGI files will most likely not allow a client to
   set the source link value.
</t>
</section>
</section>


<section title="Locking" anchor="locking">
<t>
   The ability to lock a resource provides a mechanism for serializing
   access to that resource.  Using a lock, an authoring client can
   provide a reasonable guarantee that another principal will not modify
   a resource while it is being edited.  In this way, a client can
   prevent the "lost update" problem.
</t>
<t>
   This specification allows locks to vary over two client-specified
   parameters, the number of principals involved (exclusive vs. shared)
   and the type of access to be granted. This document defines locking
   for only one access type, write. However, the syntax is extensible,
   and permits the eventual specification of locking for other access
   types.
</t>

<section title="Exclusive Vs. Shared Locks">
<t>
   The most basic form of lock is an exclusive lock.  This is a lock
   where the access right in question is only granted to a single
   principal.  The need for this arbitration results from a desire to
   avoid having to merge results.
</t>
<t>
   However, there are times when the goal of a lock is not to exclude
   others from exercising an access right but rather to provide a
   mechanism for principals to indicate that they intend to exercise
   their access rights.  Shared locks are provided for this case.  A
   shared lock allows multiple principals to receive a lock.  Hence any
   principal with appropriate access can get the lock.
</t>
<t>
   With shared locks there are two trust sets that affect a resource.
   The first trust set is created by access permissions.  Principals who
   are trusted, for example, may have permission to write to the
   resource.  Among those who have access permission to write to the
   resource, the set of principals who have taken out a shared lock also
   must trust each other, creating a (typically) smaller trust set
   within the access permission write set.
</t>
<t>
   Starting with every possible principal on the Internet, in most
   situations the vast majority of these principals will not have write
   access to a given resource.  Of the small number who do have write
   access, some principals may decide to guarantee their edits are free
   from overwrite conflicts by using exclusive write locks.  Others may
   decide they trust their collaborators will not overwrite their work
   (the potential set of collaborators being the set of principals who
   have write permission) and use a shared lock, which informs their
   collaborators that a principal may be working on the resource.
</t>
<t>
   The WebDAV extensions to HTTP do not need to provide all of the
   communications paths necessary for principals to coordinate their
   activities.  When using shared locks, principals may use any out of
   band communication channel to coordinate their work (e.g., face-to-face
   interaction, written notes, post-it notes on the screen,
   telephone conversation, Email, etc.)  The intent of a shared lock is
   to let collaborators know who else may be working on a resource.
</t>
<t>
   Shared locks are included because experience from web distributed
   authoring systems has indicated that exclusive locks are often too
   rigid.  An exclusive lock is used to enforce a particular editing
   process: take out an exclusive lock, read the resource, perform
   edits, write the resource, release the lock.  This editing process
   has the problem that locks are not always properly released, for
   example when a program crashes, or when a lock owner leaves without
   unlocking a resource.  While both timeouts and administrative action
   can be used to remove an offending lock, neither mechanism may be
   available when needed; the timeout may be long or the administrator
   may not be available.
</t>
</section>

<section title="Required Support">
<t>
   A WebDAV compliant server is not required to support locking in any
   form.  If the server does support locking it may choose to support
   any combination of exclusive and shared locks for any access types.
</t>
<t>
   The reason for this flexibility is that locking policy strikes to the
   very heart of the resource management and versioning systems employed
   by various storage repositories.  These repositories require control
   over what sort of locking will be made available.  For example, some
   repositories only support shared write locks while others only
   provide support for exclusive write locks while yet others use no
   locking at all.  As each system is sufficiently different to merit
   exclusion of certain locking features, this specification leaves
   locking as the sole axis of negotiation within WebDAV.
</t>
</section>

<section title="Lock Tokens">
<t>
   A lock token is a type of state token, represented as a URI, which
   identifies a particular lock.  A lock token is returned by every
   successful LOCK operation in the lockdiscovery property in the
   response body, and can also be found through lock discovery on a
   resource.
</t>
<t>
   Lock token URIs &MUST; be unique across all resources for all time.
   This uniqueness constraint allows lock tokens to be submitted across
   resources and servers without fear of confusion.
</t>
<t>
   This specification provides a lock token URI scheme called
   opaquelocktoken that meets the uniqueness requirements.  However
   resources are free to return any URI scheme so long as it meets the
   uniqueness requirements.
</t>
<t>
   Having a lock token provides no special access rights. Anyone can
   find out anyone else's lock token by performing lock discovery.
   Locks &MUST; be enforced based upon whatever authentication mechanism
   is used by the server, not based on the secrecy of the token values.
</t>
</section>

<section title="opaquelocktoken Lock Token URI Scheme" anchor="opaquelocktoken.lock.token.uri.scheme">
<t>
   The opaquelocktoken URI scheme is designed to be unique across all
   resources for all time.  Due to this uniqueness quality, a client may
   submit an opaque lock token in an If header on a resource other than
   the one that returned it.
</t>
<t>
   All resources &MUST; recognize the opaquelocktoken scheme and, at
   minimum, recognize that the lock token does not refer to an
   outstanding lock on the resource.
</t>
<t>
   In order to guarantee uniqueness across all resources for all time
   the opaquelocktoken requires the use of the Universal Unique
   Identifier (UUID) mechanism, as described in <xref target="ISO-11578" />.
</t>
<t>
   Opaquelocktoken generators, however, have a choice of how they create
   these tokens.  They can either generate a new UUID for every lock
   token they create or they can create a single UUID  and then add
   extension characters.  If the second method is selected then the
   program generating the extensions &MUST; guarantee that the same
   extension will never be used twice with the associated UUID.
</t>
<t>
   OpaqueLockToken-URI = "opaquelocktoken:" UUID [Extension]  ; The UUID
   production is the string representation of a UUID, as defined in
   <xref target="ISO-11578" />. Note that white space (LWS) is not allowed between
   elements of this production.
</t>
<t>
   Extension = path  ; path is defined in section <xref target="RFC2068" x:fmt="number" x:sec="3.2.1"/> of RFC 2068
   <xref target="RFC2068" />
</t>

<section title="Node Field Generation Without the IEEE 802 Address" anchor="node.field.generation.without.the.ieee.802.address">
<t>
   UUIDs, as defined in <xref target="ISO-11578" />, contain a "node" field that
   contains one of the IEEE 802 addresses for the server machine.  As
   noted in <xref target="risks.connected.with.lock.tokens"/>, there are several security risks associated
   with exposing a machine's IEEE 802 address. This section provides an
   alternate mechanism for generating the "node" field of a UUID which
   does not employ an IEEE 802 address.  WebDAV servers &MAY; use this
   algorithm for creating the node field when generating UUIDs.  The
   text in this section is originally from an Internet-Draft by Paul
   Leach and Rich Salz, who are noted here to properly attribute their
   work.
</t>
<t>
   The ideal solution is to obtain a 47 bit cryptographic quality random
   number, and use it as the low 47 bits of the node ID, with the most
   significant bit of the first octet of the node ID set to 1.  This bit
   is the unicast/multicast bit, which will never be set in IEEE 802
   addresses obtained from network cards; hence, there can never be a
   conflict between UUIDs generated by machines with and without network
   cards.
</t>
<t>
   If a system does not have a primitive to generate cryptographic
   quality random numbers, then in most systems there are usually a
   fairly large number of sources of randomness available from which one
   can be generated. Such sources are system specific, but often
   include:
</t>
<t>
  <list style="symbols">
    <t>the percent of memory in use</t>
    <t>the size of main memory in bytes</t>
    <t>the amount of free main memory in bytes</t>
    <t>the size of the paging or swap file in bytes</t>
    <t>free bytes of paging or swap file</t>
    <t>the total size of user virtual address space in bytes</t>
    <t>the total available user address space bytes</t>
    <t>the size of boot disk drive in bytes</t>
    <t>the free disk space on boot drive in bytes</t>
    <t>the current time</t>
    <t>the amount of time since the system booted</t>
    <t>the individual sizes of files in various system directories</t>
    <t>the creation, last read, and modification times of files in
      various system directories</t>
    <t>the utilization factors of various system resources (heap, etc.)</t>
    <t>current mouse cursor position</t>
    <t>current caret position</t>
    <t>current number of running processes, threads</t>
    <t>handles or IDs of the desktop window and the active window</t>
    <t>the value of stack pointer of the caller</t>
    <t>the process and thread ID of caller</t>
    <t>various processor architecture specific performance counters
      (instructions executed, cache misses, TLB misses)</t>
  </list>
</t>
<t>
   (Note that it is precisely the above kinds of sources of randomness
   that are used to seed cryptographic quality random number generators
   on systems without special hardware for their construction.)
</t>
<t>
   In addition, items such as the computer's name and the name of the
   operating system, while not strictly speaking random, will help
   differentiate the results from those obtained by other systems.
</t>
<t>
   The exact algorithm to generate a node ID using these data is system
   specific, because both the data available and the functions to obtain
   them are often very system specific. However, assuming that one can
   concatenate all the values from the randomness sources into a buffer,
   and that a cryptographic hash function such as MD5 is available, then
   any 6 bytes of the MD5 hash of the buffer, with the multicast bit
   (the high bit of the first byte) set will be an appropriately random
   node ID.
</t>
<t>
   Other hash functions, such as SHA-1, can also be used. The only
   requirement is that the result be suitably random _ in the sense that
   the outputs from a set uniformly distributed inputs are themselves
   uniformly distributed, and that a single bit change in the input can
   be expected to cause half of the output bits to change.
</t>
</section>
</section>

<section title="Lock Capability Discovery">
<t>
   Since server lock support is optional, a client trying to lock a
   resource on a server can either try the lock and hope for the best,
   or perform some form of discovery to determine what lock capabilities
   the server supports.  This is known as lock capability discovery.
   Lock capability discovery differs from discovery of supported access
   control types, since there may be access control types without
   corresponding lock types.  A client can determine what lock types the
   server supports by retrieving the supportedlock property.
</t>
<t>
   Any DAV compliant resource that supports the LOCK method &MUST; support
   the supportedlock property.
</t>
</section>

<section title="Active Lock Discovery">
<t>
   If another principal locks a resource that a principal wishes to
   access, it is useful for the second principal to be able to find out
   who the first principal is.  For this purpose the lockdiscovery
   property is provided.  This property lists all outstanding locks,
   describes their type, and where available, provides their lock token.
</t>
<t>
   Any DAV compliant resource that supports the LOCK method &MUST; support
   the lockdiscovery property.
</t>
</section>

<section title="Usage Considerations">
<t>
   Although the locking mechanisms specified here provide some help in
   preventing lost updates, they cannot guarantee that updates will
   never be lost.  Consider the following scenario:
</t>
<t>
   Two clients A and B are interested in editing the resource '
   index.html'.  Client A is an HTTP client rather than a WebDAV client,
   and so does not know how to perform locking.
</t>
<t>
   Client A doesn't lock the document, but does a GET and begins
   editing.
</t>
<t>
   Client B does LOCK, performs a GET and begins editing.
</t>
<t>
   Client B finishes editing, performs a PUT, then an UNLOCK.
</t>
<t>
   Client A performs a PUT, overwriting and losing all of B's changes.
</t>
<t>
   There are several reasons why the WebDAV protocol itself cannot
   prevent this situation.  First, it cannot force all clients to use
   locking because it must be compatible with HTTP clients that do not
   comprehend locking.  Second, it cannot require servers to support
   locking because of the variety of repository implementations, some of
   which rely on reservations and merging rather than on locking.
   Finally, being stateless, it cannot enforce a sequence of operations
   like LOCK / GET / PUT / UNLOCK.
</t>
<t>
   WebDAV servers that support locking can reduce the likelihood that
   clients will accidentally overwrite each other's changes by requiring
   clients to lock resources before modifying them.  Such servers would
   effectively prevent HTTP 1.0 and HTTP 1.1 clients from modifying
   resources.
</t>
<t>
   WebDAV clients can be good citizens by using a lock / retrieve /
   write /unlock sequence of operations (at least by default) whenever
   they interact with a WebDAV server that supports locking.
</t>
<t>
   HTTP 1.1 clients can be good citizens, avoiding overwriting other
   clients' changes, by using entity tags in If-Match headers with any
   requests that would modify resources.
</t>
<t>
   Information managers may attempt to prevent overwrites by
   implementing client-side procedures requiring locking before
   modifying WebDAV resources.
</t>
</section>
</section>

<section title="Write Lock">
<t>
   This section describes the semantics specific to the write lock type.
   The write lock is a specific instance of a lock type, and is the only
   lock type described in this specification.
</t>

<section title="Methods Restricted by Write Locks">
<t>
   A write lock &MUST; prevent a principal without the lock from
   successfully executing a PUT, POST, PROPPATCH, LOCK, UNLOCK, MOVE,
   DELETE, or MKCOL on the locked resource.  All other current methods,
   GET in particular, function independently of the lock.
</t>
<t>
   Note, however, that as new methods are created it will be necessary
   to specify how they interact with a write lock.
</t>
</section>

<section title="Write Locks and Lock Tokens">
<t>
   A successful request for an exclusive or shared write lock &MUST;
   result in the generation of a unique lock token associated with the
   requesting principal.  Thus if five principals have a shared write
   lock on the same resource there will be five lock tokens, one for
   each principal.
</t>
</section>

<section title="Write Locks and Properties">
<t>
   While those without a write lock may not alter a property on a
   resource it is still possible for the values of live properties to
   change, even while locked, due to the requirements of their schemas.
   Only dead properties and live properties defined to respect locks are
   guaranteed not to change while write locked.
</t>
</section>

<section title="Write Locks and Null Resources">
<t>
   It is possible to assert a write lock on a null resource in order to
   lock the name.
</t>
<t>
   A write locked null resource, referred to as a lock-null resource,
   &MUST; respond with a 404 (Not Found) or 405 (Method Not Allowed) to
   any HTTP/1.1 or DAV methods except for PUT, MKCOL, OPTIONS, PROPFIND,
   LOCK, and UNLOCK.  A lock-null resource &MUST; appear as a member of
   its parent collection.  Additionally the lock-null resource &MUST; have
   defined on it all mandatory DAV properties.  Most of these
   properties, such as all the get* properties, will have no value as a
   lock-null resource does not support the GET method.  Lock-Null
   resources &MUST; have defined values for lockdiscovery and
   supportedlock properties.
</t>
<t>
   Until a method such as PUT or MKCOL is successfully executed on the
   lock-null resource the resource &MUST; stay in the lock-null state.
   However, once a PUT or MKCOL is successfully executed on a lock-null
   resource the resource ceases to be in the lock-null state.
</t>
<t>
   If the resource is unlocked, for any reason, without a PUT, MKCOL, or
   similar method having been successfully executed upon it then the
   resource &MUST; return to the null state.
</t>
</section>

<section title="Write Locks and Collections" anchor="write.locks.and.collections">
<t>
   A write lock on a collection, whether created by a "Depth: 0" or
   "Depth: infinity" lock request, prevents the addition or removal of
   member URIs of the collection by non-lock owners.  As a consequence,
   when a principal issues a PUT or POST request to create a new
   resource under a URI which needs to be an internal member of a write
   locked collection to maintain HTTP namespace consistency, or issues a
   DELETE to remove a resource which has a URI which is an existing
   internal member URI of a write locked collection, this request &MUST;
   fail if the principal does not have a write lock on the collection.
</t>
<t>
   However, if a write lock request is issued to a collection containing
   member URIs identifying resources that are currently locked in a
   manner which conflicts with the write lock, the request &MUST; fail
   with a 423 (Locked) status code.
</t>
<t>
   If a lock owner causes the URI of a resource to be added as an
   internal member URI of a locked collection then the new resource &MUST;
   be automatically added to the lock.  This is the only mechanism that
   allows a resource to be added to a write lock.  Thus, for example, if
   the collection /a/b/ is write locked and the resource /c is moved to
   /a/b/c then resource /a/b/c will be added to the write lock.
</t>
</section>

<section title="Write Locks and the If Request Header" anchor="write.locks.and.the.if.request.header">
<t>
   If a user agent is not required to have knowledge about a lock when
   requesting an operation on a locked resource, the following scenario
   might occur.  Program A, run by User A, takes out a write lock on a
   resource.  Program B, also run by User A, has no knowledge of the
   lock taken out by Program A, yet performs a PUT to the locked
   resource.  In this scenario, the PUT succeeds because locks are
   associated with a principal, not a program, and thus program B,
   because it is acting with principal A's credential, is allowed to
   perform the PUT.  However, had program B known about the lock, it
   would not have overwritten the resource, preferring instead to
   present a dialog box describing the conflict to the user.  Due to
   this scenario, a mechanism is needed to prevent different programs
   from accidentally ignoring locks taken out by other programs with the
   same authorization.
</t>
<t>
   In order to prevent these collisions a lock token &MUST; be submitted
   by an authorized principal in the If header for all locked resources
   that a method may interact with or the method &MUST; fail.  For
   example, if a resource is to be moved and both the source and
   destination are locked then two lock tokens must be submitted, one
   for the source and the other for the destination.
</t>

<section title="Example - Write Lock">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   COPY /~fielding/index.html HTTP/1.1
   Host: www.ics.uci.edu
   Destination: http://www.ics.uci.edu/users/f/fielding/index.html
   If: <http://www.ics.uci.edu/users/f/fielding/index.html>
       (<opaquelocktoken:f81d4fae-7dec-11d0-a765-00a0c91e6bf6>)
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 204 No Content
]]></artwork></figure>
<t>
   In this example, even though both the source and destination are
   locked, only one lock token must be submitted, for the lock on the
   destination.  This is because the source resource is not modified by
   a COPY, and hence unaffected by the write lock. In this example, user
   agent authentication has previously occurred via a mechanism outside
   the scope of the HTTP protocol, in the underlying transport layer.
</t>
</section>
</section>

<section title="Write Locks and COPY/MOVE">
<t>
   A COPY method invocation &MUST-NOT; duplicate any write locks active on
   the source.  However, as previously noted, if the COPY copies the
   resource into a collection that is locked with "Depth: infinity",
   then the resource will be added to the lock.
</t>
<t>
   A successful MOVE request on a write locked resource &MUST-NOT; move
   the write lock with the resource. However, the resource is subject to
   being added to an existing lock at the destination, as specified in
   <xref target="write.locks.and.collections"/>. For example, if the MOVE makes the resource a child of a
   collection that is locked with "Depth: infinity", then the resource
   will be added to that collection's lock. Additionally, if a resource
   locked with "Depth: infinity" is moved to a destination that is
   within the scope of the same lock (e.g., within the namespace tree
   covered by the lock), the moved resource will again be a added to the
   lock. In both these examples, as specified in <xref target="write.locks.and.the.if.request.header"/>, an If
   header must be submitted containing a lock token for both the source
   and destination.
</t>
</section>

<section title="Refreshing Write Locks">
<t>
   A client &MUST-NOT; submit the same write lock request twice.  Note
   that a client is always aware it is resubmitting the same lock
   request because it must include the lock token in the If header in
   order to make the request for a resource that is already locked.
</t>
<t>
   However, a client may submit a LOCK method with an If header but
   without a body.  This form of LOCK &MUST; only be used to "refresh" a
   lock.  Meaning, at minimum, that any timers associated with the lock
   &MUST; be re-set.
</t>
<t>
   A server may return a Timeout header with a lock refresh that is
   different than the Timeout header returned when the lock was
   originally requested.  Additionally clients may submit Timeout
   headers of arbitrary value with their lock refresh requests.
   Servers, as always, may ignore Timeout headers submitted by the
   client.
</t>
<t>
   If an error is received in response to a refresh LOCK request the
   client &SHOULD; assume that the lock was not refreshed.
</t>
</section>
</section>

<section title="HTTP Methods for Distributed Authoring" anchor="http.methods.for.distributed.authoring">
<t>
   The following new HTTP methods use XML as a request and response
   format.  All DAV compliant clients and resources &MUST; use XML parsers
   that are compliant with <xref target="REC-XML" />.  All XML used in either requests
   or responses &MUST; be, at minimum, well formed.  If a server receives
   ill-formed XML in a request it &MUST; reject the entire request with a
   400 (Bad Request).  If a client receives ill-formed XML in a response
   then it &MUST-NOT; assume anything about the outcome of the executed
   method and &SHOULD; treat the server as malfunctioning.
</t>

<section title="PROPFIND" anchor="METHOD_PROPFIND">
<iref item="PROPFIND method" primary="true" />
<iref item="Methods" subitem="PROPFIND" primary="true" />
<t>
   The PROPFIND method retrieves properties defined on the resource
   identified by the Request-URI, if the resource does not have any
   internal members, or on the resource identified by the Request-URI
   and potentially its member resources, if the resource is a collection
   that has internal member URIs.  All DAV compliant resources &MUST;
   support the PROPFIND method and the propfind XML element (section
   <xref target="ELEMENT_propfind" format="counter"/>) along with all XML elements defined for use with that element.
</t>
<t>
   A client may submit a Depth header with a value of "0", "1", or
   "infinity" with a PROPFIND on a collection resource with internal
   member URIs.  DAV compliant servers &MUST; support the "0", "1" and
   "infinity" behaviors. By default, the PROPFIND method without a Depth
   header &MUST; act as if a "Depth: infinity" header was included.
</t>
<t>
   A client may submit a propfind XML element in the body of the request
   method describing what information is being requested.  It is
   possible to request particular property values, all property values,
   or a list of the names of the resource's properties.  A client may
   choose not to submit a request body.  An empty PROPFIND request body
   &MUST; be treated as a request for the names and values of all
   properties.
</t>
<t>
   All servers &MUST; support returning a response of content type
   text/xml or application/xml that contains a multistatus XML element
   that describes the results of the attempts to retrieve the various
   properties.
</t>
<t>
   If there is an error retrieving a property then a proper error result
   &MUST; be included in the response.  A request to retrieve the value of
   a property which does not exist is an error and &MUST; be noted, if the
   response uses a multistatus XML element, with a response XML element
   which contains a 404 (Not Found) status value.
</t><t>
   Consequently, the multistatus XML element for a collection resource
   with member URIs &MUST; include a response XML element for each member
   URI of the collection, to whatever depth was requested. Each response
   XML element &MUST; contain an href XML element that gives the URI of
   the resource on which the properties in the prop XML element are
   defined.  Results for a PROPFIND on a collection resource with
   internal member URIs are returned as a flat list whose order of
   entries is not significant.
</t>
<t>
   In the case of allprop and propname, if a principal does not have the
   right to know whether a particular property exists then the property
   should be silently excluded from the response.
</t>
<t>
   The results of this method &SHOULD-NOT; be cached.
</t>

<section title="Example - Retrieving Named Properties">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   PROPFIND  /file HTTP/1.1
   Host: www.foo.bar
   Content-type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D="DAV:">
     <D:prop xmlns:R="http://www.foo.bar/boxschema/">
          <R:bigbox/>
          <R:author/>
          <R:DingALing/>
          <R:Random/>
     </D:prop>
   </D:propfind>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:multistatus xmlns:D="DAV:">
     <D:response>
          <D:href>http://www.foo.bar/file</D:href>
          <D:propstat>
               <D:prop xmlns:R="http://www.foo.bar/boxschema/">
                    <R:bigbox>
                         <R:BoxType>Box type A</R:BoxType>
                    </R:bigbox>
                    <R:author>
                         <R:Name>J.J. Johnson</R:Name>
                    </R:author>
               </D:prop>
               <D:status>HTTP/1.1 200 OK</D:status>
          </D:propstat>
          <D:propstat>
               <D:prop><R:DingALing/><R:Random/></D:prop>
               <D:status>HTTP/1.1 403 Forbidden</D:status>
               <D:responsedescription> The user does not have access to
   the DingALing property.
               </D:responsedescription>
          </D:propstat>
     </D:response>
     <D:responsedescription> There has been an access violation error.
     </D:responsedescription>
   </D:multistatus>
]]></artwork></figure>
<t>
   In this example, PROPFIND is executed on a non-collection resource
   http://www.foo.bar/file.  The propfind XML element specifies the name
   of four properties whose values are being requested. In this case
   only two properties were returned, since the principal issuing the
   request did not have sufficient access rights to see the third and
   fourth properties.
</t>
</section>

<section title="Example - Using allprop to Retrieve All Properties">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   PROPFIND  /container/ HTTP/1.1
   Host: www.foo.bar
   Depth: 1
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D="DAV:">
     <D:allprop/>
   </D:propfind>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:multistatus xmlns:D="DAV:">
     <D:response>
          <D:href>http://www.foo.bar/container/</D:href>
          <D:propstat>
               <D:prop xmlns:R="http://www.foo.bar/boxschema/">
                    <R:bigbox>
                         <R:BoxType>Box type A</R:BoxType>
                    </R:bigbox>
                    <R:author>
                         <R:Name>Hadrian</R:Name>
                    </R:author>
                    <D:creationdate>
                         1997-12-01T17:42:21-08:00
                    </D:creationdate>
                    <D:displayname>
                         Example collection
                    </D:displayname>
                    <D:resourcetype><D:collection/></D:resourcetype>
                    <D:supportedlock>
                         <D:lockentry>
                              <D:lockscope><D:exclusive/></D:lockscope>
                              <D:locktype><D:write/></D:locktype>
                         </D:lockentry>
                         <D:lockentry>
                              <D:lockscope><D:shared/></D:lockscope>
                              <D:locktype><D:write/></D:locktype>
                         </D:lockentry>
                    </D:supportedlock>
               </D:prop>
               <D:status>HTTP/1.1 200 OK</D:status>
          </D:propstat>
     </D:response>
     <D:response>
          <D:href>http://www.foo.bar/container/front.html</D:href>
          <D:propstat>
               <D:prop xmlns:R="http://www.foo.bar/boxschema/">
                    <R:bigbox>
                         <R:BoxType>Box type B</R:BoxType>
                    </R:bigbox>
                    <D:creationdate>
                         1997-12-01T18:27:21-08:00
                    </D:creationdate>
                    <D:displayname>
                         Example HTML resource
                    </D:displayname>
                    <D:getcontentlength>
                         4525
                    </D:getcontentlength>
                    <D:getcontenttype>
                         text/html
                    </D:getcontenttype>
                    <D:getetag>
                         zzyzx
                    </D:getetag>
                    <D:getlastmodified>
                         Monday, 12-Jan-98 09:25:56 GMT
                    </D:getlastmodified>
                    <D:resourcetype/>
                    <D:supportedlock>
                         <D:lockentry>
                              <D:lockscope><D:exclusive/></D:lockscope>
                              <D:locktype><D:write/></D:locktype>
                         </D:lockentry>
                         <D:lockentry>
                              <D:lockscope><D:shared/></D:lockscope>
                              <D:locktype><D:write/></D:locktype>
                         </D:lockentry>
                    </D:supportedlock>
               </D:prop>
               <D:status>HTTP/1.1 200 OK</D:status>
          </D:propstat>
     </D:response>
   </D:multistatus>
]]></artwork></figure>
<t>
   In this example, PROPFIND was invoked on the resource
   http://www.foo.bar/container/ with a Depth header of 1, meaning the
   request applies to the resource and its children, and a propfind XML
   element containing the allprop XML element, meaning the request
   should return the name and value of all properties defined on each
   resource.
</t><t>
   The resource http://www.foo.bar/container/ has six properties defined
   on it:
</t><t>
   http://www.foo.bar/boxschema/bigbox,
   http://www.foo.bar/boxschema/author, DAV:creationdate,
   DAV:displayname, DAV:resourcetype, and DAV:supportedlock.
</t><t>
   The last four properties are WebDAV-specific, defined in <xref target="dav.properties"/>.
   Since GET is not supported on this resource, the get* properties
   (e.g., getcontentlength) are not defined on this resource. The DAV-specific
   properties assert that "container" was created on December
   1, 1997, at 5:42:21PM, in a time zone 8 hours west of GMT
   (creationdate), has a name of "Example collection" (displayname), a
   collection resource type (resourcetype), and supports exclusive write
   and shared write locks (supportedlock).
</t><t>
   The resource http://www.foo.bar/container/front.html has nine
   properties defined on it:
</t><t>
   http://www.foo.bar/boxschema/bigbox (another instance of the "bigbox"
   property type), DAV:creationdate, DAV:displayname,
   DAV:getcontentlength, DAV:getcontenttype, DAV:getetag,
   DAV:getlastmodified, DAV:resourcetype, and DAV:supportedlock.
</t><t>
   The DAV-specific properties assert that "front.html" was created on
   December 1, 1997, at 6:27:21PM, in a time zone 8 hours west of GMT
   (creationdate), has a name of "Example HTML resource" (displayname),
   a content length of 4525 bytes (getcontentlength), a MIME type of
   "text/html" (getcontenttype), an entity tag of "zzyzx" (getetag), was
   last modified on Monday, January 12, 1998, at 09:25:56 GMT
   (getlastmodified), has an empty resource type, meaning that it is not
   a collection (resourcetype), and supports both exclusive write and
   shared write locks (supportedlock).
</t>
</section>

<section title="Example - Using propname to Retrieve all Property Names">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   PROPFIND  /container/ HTTP/1.1
   Host: www.foo.bar
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <propfind xmlns="DAV:">
     <propname/>
   </propfind>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <multistatus xmlns="DAV:">
     <response>
          <href>http://www.foo.bar/container/</href>
          <propstat>
               <prop xmlns:R="http://www.foo.bar/boxschema/">
                    <R:bigbox/>
                    <R:author/>
                    <creationdate/>
                    <displayname/>
                    <resourcetype/>
                    <supportedlock/>
               </prop>
               <status>HTTP/1.1 200 OK</status>
          </propstat>
     </response>
     <response>
          <href>http://www.foo.bar/container/front.html</href>
          <propstat>
               <prop xmlns:R="http://www.foo.bar/boxschema/">
                    <R:bigbox/>
                    <creationdate/>
                    <displayname/>
                    <getcontentlength/>
                    <getcontenttype/>
                    <getetag/>
                    <getlastmodified/>
                    <resourcetype/>
                    <supportedlock/>
               </prop>
               <status>HTTP/1.1 200 OK</status>
          </propstat>
     </response>
   </multistatus>
]]></artwork></figure>
<t>
   In this example, PROPFIND is invoked on the collection resource
   http://www.foo.bar/container/, with a propfind XML element containing
   the propname XML element, meaning the name of all properties should
   be returned.  Since no Depth header is present, it assumes its
   default value of "infinity", meaning the name of the properties on
   the collection and all its progeny should be returned.
</t><t>
   Consistent with the previous example, resource
   http://www.foo.bar/container/ has six properties defined on it,
   http://www.foo.bar/boxschema/bigbox,
   http://www.foo.bar/boxschema/author, DAV:creationdate,
   DAV:displayname, DAV:resourcetype, and DAV:supportedlock.
</t><t>
   The resource http://www.foo.bar/container/index.html, a member of the
   "container" collection, has nine properties defined on it,
   http://www.foo.bar/boxschema/bigbox, DAV:creationdate,
   DAV:displayname, DAV:getcontentlength, DAV:getcontenttype,
   DAV:getetag, DAV:getlastmodified, DAV:resourcetype, and
   DAV:supportedlock.
</t><t>
   This example also demonstrates the use of XML namespace scoping, and
   the default namespace.  Since the "xmlns" attribute does not contain
   an explicit "shorthand name" (prefix) letter, the namespace applies
   by default to all enclosed elements.  Hence, all elements which do
   not explicitly state the namespace to which they belong are members
   of the "DAV:" namespace schema.
</t>
</section>
</section>

<section title="PROPPATCH" anchor="METHOD_PROPPATCH">
<iref item="PROPPATCH method" primary="true" />
<iref item="Methods" subitem="PROPPATCH" primary="true" />
<t>
   The PROPPATCH method processes instructions specified in the request
   body to set and/or remove properties defined on the resource
   identified by the Request-URI.
</t><t>
   All DAV compliant resources &MUST; support the PROPPATCH method and
   &MUST; process instructions that are specified using the
   propertyupdate, set, and remove XML elements of the DAV schema.
   Execution of the directives in this method is, of course, subject to
   access control constraints.  DAV compliant resources &SHOULD; support
   the setting of arbitrary dead properties.
</t><t>
   The request message body of a PROPPATCH method &MUST; contain the
   propertyupdate XML element.  Instruction processing &MUST; occur in the
   order instructions are received (i.e., from top to bottom).
   Instructions &MUST; either all be executed or none executed. Thus if
   any error occurs during processing all executed instructions &MUST; be
   undone and a proper error result returned. Instruction processing
   details can be found in the definition of the set and remove
   instructions in <xref target="ELEMENT_propertyupdate"/>.
</t>

<section title="Status Codes for use with 207 (Multi-Status)">
<t>
   The following are examples of response codes one would expect to be
   used in a 207 (Multi-Status) response for this method.  Note,
   however, that unless explicitly prohibited any 2/3/4/5xx series
   response code may be used in a 207 (Multi-Status) response.
</t><t>
   200 (OK) - The command succeeded.  As there can be a mixture of sets
   and removes in a body, a 201 (Created) seems inappropriate.
</t><t>
   403 (Forbidden) - The client, for reasons the server chooses not to
   specify, cannot alter one of the properties.
</t><t>
   409 (Conflict) - The client has provided a value whose semantics are
   not appropriate for the property.  This includes trying to set read-only
   properties.
</t><t>
   423 (Locked) - The specified resource is locked and the client either
   is not a lock owner or the lock type requires a lock token to be
   submitted and the client did not submit it.
</t><t>
   507 (Insufficient Storage) - The server did not have sufficient space
   to record the property.
</t>
</section>

<section title="Example - PROPPATCH">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   PROPPATCH /bar.html HTTP/1.1
   Host: www.foo.com
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:propertyupdate xmlns:D="DAV:"
   xmlns:Z="http://www.w3.com/standards/z39.50/">
     <D:set>
          <D:prop>
               <Z:authors>
                    <Z:Author>Jim Whitehead</Z:Author>
                    <Z:Author>Roy Fielding</Z:Author>
               </Z:authors>
          </D:prop>
     </D:set>
     <D:remove>
          <D:prop><Z:Copyright-Owner/></D:prop>
     </D:remove>
   </D:propertyupdate>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:multistatus xmlns:D="DAV:"
   xmlns:Z="http://www.w3.com/standards/z39.50">
     <D:response>
          <D:href>http://www.foo.com/bar.html</D:href>
          <D:propstat>
               <D:prop><Z:Authors/></D:prop>
               <D:status>HTTP/1.1 424 Failed Dependency</D:status>
          </D:propstat>
          <D:propstat>
               <D:prop><Z:Copyright-Owner/></D:prop>
               <D:status>HTTP/1.1 409 Conflict</D:status>
          </D:propstat>
          <D:responsedescription> Copyright Owner can not be deleted or
   altered.</D:responsedescription>
     </D:response>
   </D:multistatus>
]]></artwork></figure>
<t>
   In this example, the client requests the server to set the value of
   the http://www.w3.com/standards/z39.50/Authors property, and to
   remove the property http://www.w3.com/standards/z39.50/Copyright-Owner.
   Since the Copyright-Owner property could not be removed, no
   property modifications occur.  The 424 (Failed Dependency) status
   code for the Authors property indicates this action would have
   succeeded if it were not for the conflict with removing the
   Copyright-Owner property.
</t>
</section>
</section>

<section title="MKCOL Method" anchor="METHOD_MKCOL">
<iref item="MKCOL method" primary="true" />
<iref item="Methods" subitem="MKCOL" primary="true" />
<t>
   The MKCOL method is used to create a new collection. All DAV
   compliant resources &MUST; support the MKCOL method.
</t>

<section title="Request">
<t>
   MKCOL creates a new collection resource at the location specified by
   the Request-URI.  If the resource identified by the Request-URI is
   non-null then the MKCOL &MUST; fail.  During MKCOL processing, a server
   &MUST; make the Request-URI a member of its parent collection, unless
   the Request-URI is "/".  If no such ancestor exists, the method &MUST;
   fail.  When the MKCOL operation creates a new collection resource,
   all ancestors &MUST; already exist, or the method &MUST; fail with a 409
   (Conflict) status code.  For example, if a request to create
   collection /a/b/c/d/ is made, and neither /a/b/ nor /a/b/c/ exists,
   the request must fail.
</t><t>
   When MKCOL is invoked without a request body, the newly created
   collection &SHOULD; have no members.
</t><t>
   A MKCOL request message may contain a message body.  The behavior of
   a MKCOL request when the body is present is limited to creating
   collections, members of a collection, bodies of members and
   properties on the collections or members.  If the server receives a
   MKCOL request entity type it does not support or understand it &MUST;
   respond with a 415 (Unsupported Media Type) status code.  The exact
   behavior of MKCOL for various request media types is undefined in
   this document, and will be specified in separate documents.
</t>
</section>

<section title="Status Codes">
<t>
   Responses from a MKCOL request &MUST-NOT; be cached as MKCOL has non-idempotent
   semantics.
</t><t>
   201 (Created) - The collection or structured resource was created in
   its entirety.
</t><t>
   403 (Forbidden) - This indicates at least one of two conditions: 1)
   the server does not allow the creation of collections at the given
   location in its namespace, or 2) the parent collection of the
   Request-URI exists but cannot accept members.
</t><t>
   405 (Method Not Allowed) - MKCOL can only be executed on a
   deleted/non-existent resource.
</t><t>
   409 (Conflict) - A collection cannot be made at the Request-URI until
   one or more intermediate collections have been created.
</t><t>
   415 (Unsupported Media Type)- The server does not support the request
   type of the body.
</t><t>
   507 (Insufficient Storage) - The resource does not have sufficient
   space to record the state of the resource after the execution of this
   method.
</t>
</section>

<section title="Example - MKCOL">
<t>
   This example creates a collection called /webdisc/xfiles/ on the
   server www.server.org.
</t>
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   MKCOL /webdisc/xfiles/ HTTP/1.1
   Host: www.server.org
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 201 Created
]]></artwork></figure>
</section>
</section>

<section title="GET, HEAD for Collections">
<t>
   The semantics of GET are unchanged when applied to a collection,
   since GET is defined as, "retrieve whatever information (in the form
   of an entity) is identified by the Request-URI" <xref target="RFC2068" />.  GET when
   applied to a collection may return the contents of an "index.html"
   resource, a human-readable view of the contents of the collection, or
   something else altogether. Hence it is possible that the result of a
   GET on a collection will bear no correlation to the membership of the
   collection.
</t><t>
   Similarly, since the definition of HEAD is a GET without a response
   message body, the semantics of HEAD are unmodified when applied to
   collection resources.
</t>
</section>

<section title="POST for Collections">
<t>
   Since by definition the actual function performed by POST is
   determined by the server and often depends on the particular
   resource, the behavior of POST when applied to collections cannot be
   meaningfully modified because it is largely undefined.  Thus the
   semantics of POST are unmodified when applied to a collection.
</t>
</section>


<section title="DELETE" anchor="METHOD_DELETE">
<iref item="DELETE method" primary="true" />
<iref item="Methods" subitem="DELETE" primary="true" />

<section title="DELETE for Non-Collection Resources">
<t>
   If the DELETE method is issued to a non-collection resource whose
   URIs are an internal member of one or more collections, then during
   DELETE processing a server &MUST; remove any URI for the resource
   identified by the Request-URI from collections which contain it as a
   member.
</t>
</section>

<section title="DELETE for Collections">
<t>
   The DELETE method on a collection &MUST; act as if a "Depth: infinity"
   header was used on it.  A client &MUST-NOT; submit a Depth header with
   a DELETE on a collection with any value but infinity.
</t><t>
   DELETE instructs that the collection specified in the Request-URI and
   all resources identified by its internal member URIs are to be
   deleted.
</t><t>
   If any resource identified by a member URI cannot be deleted then all
   of the member's ancestors &MUST-NOT; be deleted, so as to maintain
   namespace consistency.
</t><t>
   Any headers included with DELETE &MUST; be applied in processing every
   resource to be deleted.
</t><t>
   When the DELETE method has completed processing it &MUST; result in a
   consistent namespace.
</t><t>
   If an error occurs with a resource other than the resource identified
   in the Request-URI then the response &MUST; be a 207 (Multi-Status).
   424 (Failed Dependency) errors &SHOULD-NOT; be in the 207 (Multi-Status).
   They can be safely left out because the client will know
   that the ancestors of a resource could not be deleted when the client
   receives an error for the ancestor's progeny.  Additionally 204 (No
   Content) errors &SHOULD-NOT; be returned in the 207 (Multi-Status).
   The reason for this prohibition is that 204 (No Content) is the
   default success code.
</t>

<section title="Example - DELETE">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   DELETE  /container/ HTTP/1.1
   Host: www.foo.bar
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <d:multistatus xmlns:d="DAV:">
     <d:response>
          <d:href>http://www.foo.bar/container/resource3</d:href>
          <d:status>HTTP/1.1 423 Locked</d:status>
     </d:response>
   </d:multistatus>
]]></artwork></figure>
<t>
   In this example the attempt to delete
   http://www.foo.bar/container/resource3 failed because it is locked,
   and no lock token was submitted with the request. Consequently, the
   attempt to delete http://www.foo.bar/container/ also failed. Thus the
   client knows that the attempt to delete http://www.foo.bar/container/
   must have also failed since the parent can not be deleted unless its
   child has also been deleted.  Even though a Depth header has not been
   included, a depth of infinity is assumed because the method is on a
   collection.
</t>
</section>
</section>
</section>


<section title="PUT" anchor="METHOD_PUT">
<iref item="PUT method" primary="true" />
<iref item="Methods" subitem="PUT" primary="true" />

<section title="PUT for Non-Collection Resources">
<t>
   A PUT performed on an existing resource replaces the GET response
   entity of the resource.  Properties defined on the resource may be
   recomputed during PUT processing but are not otherwise affected.  For
   example, if a server recognizes the content type of the request body,
   it may be able to automatically extract information that could be
   profitably exposed as properties.
</t><t>
   A PUT that would result in the creation of a resource without an
   appropriately scoped parent collection &MUST; fail with a 409
   (Conflict).
</t>
</section>

<section title="PUT for Collections">
<t>
   As defined in the HTTP/1.1 specification <xref target="RFC2068" />, the "PUT method
   requests that the enclosed entity be stored under the supplied
   Request-URI."  Since submission of an entity representing a
   collection would implicitly encode creation and deletion of
   resources, this specification intentionally does not define a
   transmission format for creating a collection using PUT.  Instead,
   the MKCOL method is defined to create collections.
</t>
<t>
   When the PUT operation creates a new non-collection resource all
   ancestors &MUST; already exist.  If all ancestors do not exist, the
   method &MUST; fail with a 409 (Conflict) status code.  For example, if
   resource /a/b/c/d.html is to be created and /a/b/c/ does not exist,
   then the request must fail.
</t>
</section>
</section>


<section title="COPY Method" anchor="METHOD_COPY">
<iref item="COPY method" primary="true" />
<iref item="Methods" subitem="COPY" primary="true" />
<t>
   The COPY method creates a duplicate of the source resource,
   identified by the Request-URI, in the destination resource,
   identified by the URI in the Destination header.  The Destination
   header &MUST; be present.  The exact behavior of the COPY method
   depends on the type of the source resource.
</t><t>
   All WebDAV compliant resources &MUST; support the COPY method.
   However, support for the COPY method does not guarantee the ability
   to copy a resource. For example, separate programs may control
   resources on the same server.  As a result, it may not be possible to
   copy a resource to a location that appears to be on the same server.
</t>

<section title="COPY for HTTP/1.1 resources">
<t>
   When the source resource is not a collection the result of the COPY
   method is the creation of a new resource at the destination whose
   state and behavior match that of the source resource as closely as
   possible.  After a successful COPY invocation, all properties on the
   source resource &MUST; be duplicated on the destination resource,
   subject to modifying headers and XML elements, following the
   definition for copying properties.  Since the environment at the
   destination may be different than at the source due to factors
   outside the scope of control of the server, such as the absence of
   resources required for correct operation, it may not be possible to
   completely duplicate the behavior of the resource at the destination.
   Subsequent alterations to the destination resource will not modify
   the source resource.  Subsequent alterations to the source resource
   will not modify the destination resource.
</t>
</section>

<section title="COPY for Properties" anchor="copy.for.properties">
<t>
   The following section defines how properties on a resource are
   handled during a COPY operation.
</t><t>
   Live properties &SHOULD; be duplicated as identically behaving live
   properties at the destination resource.  If a property cannot be
   copied live, then its value &MUST; be duplicated, octet-for-octet, in
   an identically named, dead property on the destination resource
   subject to the effects of the propertybehavior XML element.
</t><t>
   The propertybehavior XML element can specify that properties are
   copied on best effort, that all live properties must be successfully
   copied or the method must fail, or that a specified list of live
   properties must be successfully copied or the method must fail. The
   propertybehavior XML element is defined in <xref target="ELEMENT_propertybehaviour"/>.
</t>
</section>

<section title="COPY for Collections" anchor="copy.for.collections">
<t>
   The COPY method on a collection without a Depth header &MUST; act as if
   a Depth header with value "infinity" was included.  A client may
   submit a Depth header on a COPY on a collection with a value of "0"
   or "infinity".  DAV compliant servers &MUST; support the "0" and
   "infinity" Depth header behaviors.
</t><t>
   A COPY of depth infinity instructs that the collection resource
   identified by the Request-URI is to be copied to the location
   identified by the URI in the Destination header, and all its internal
   member resources are to be copied to a location relative to it,
   recursively through all levels of the collection hierarchy.
</t><t>
   A COPY of "Depth: 0" only instructs that the collection and its
   properties but not resources identified by its internal member URIs,
   are to be copied.
</t><t>
   Any headers included with a COPY &MUST; be applied in processing every
   resource to be copied with the exception of the Destination header.
</t><t>
   The Destination header only specifies the destination URI for the
   Request-URI. When applied to members of the collection identified by
   the Request-URI the value of Destination is to be modified to reflect
   the current location in the hierarchy.  So, if the Request- URI is
   /a/ with Host header value http://fun.com/ and the Destination is
   http://fun.com/b/ then when http://fun.com/a/c/d is processed it must
   use a Destination of http://fun.com/b/c/d.
</t><t>
   When the COPY method has completed processing it &MUST; have created a
   consistent namespace at the destination (see <xref target="http.url.namespace.model"/> for the
   definition of namespace consistency).  However, if an error occurs
   while copying an internal collection, the server &MUST-NOT; copy any
   resources identified by members of this collection (i.e., the server
   must skip this subtree), as this would create an inconsistent
   namespace. After detecting an error, the COPY operation &SHOULD; try to
   finish as much of the original copy operation as possible (i.e., the
   server should still attempt to copy other subtrees and their members,
   that are not descendents of an error-causing collection).  So, for
   example, if an infinite depth copy operation is performed on
   collection /a/, which contains collections /a/b/ and /a/c/, and an
   error occurs copying /a/b/, an attempt should still be made to copy
   /a/c/. Similarly, after encountering an error copying a non-collection
   resource as part of an infinite depth copy, the server
   &SHOULD; try to finish as much of the original copy operation as
   possible.
</t><t>
   If an error in executing the COPY method occurs with a resource other
   than the resource identified in the Request-URI then the response
   &MUST; be a 207 (Multi-Status).
</t><t>
   The 424 (Failed Dependency) status code &SHOULD-NOT; be returned in the
   207 (Multi-Status) response from a COPY method.  These responses can
   be safely omitted because the client will know that the progeny of a
   resource could not be copied when the client receives an error for
   the parent.  Additionally 201 (Created)/204 (No Content) status codes
   &SHOULD-NOT; be returned as values in 207 (Multi-Status) responses from
   COPY methods.  They, too, can be safely omitted because they are the
   default success codes.
</t>
</section>

<section title="COPY and the Overwrite Header">
<t>
   If a resource exists at the destination and the Overwrite header is
   "T" then prior to performing the copy the server &MUST; perform a
   DELETE with "Depth: infinity" on the destination resource.  If the
   Overwrite header is set to "F" then the operation will fail.
</t>
</section>

<section title="Status Codes">
<t>
   201 (Created) - The source resource was successfully copied.  The
   copy operation resulted in the creation of a new resource.
</t><t>
   204 (No Content) - The source resource was successfully copied to a
   pre-existing destination resource.
</t><t>
   403 (Forbidden) - The source and destination URIs are the same.
</t><t>
   409 (Conflict) - A resource cannot be created at the destination
   until one or more intermediate collections have been created.
</t><t>
   412 (Precondition Failed) - The server was unable to maintain the
   liveness of the properties listed in the propertybehavior XML element
   or the Overwrite header is "F" and the state of the destination
   resource is non-null.
</t><t>
   423 (Locked) - The destination resource was locked.
</t><t>
   502 (Bad Gateway) - This may occur when the destination is on another
   server and the destination server refuses to accept the resource.
</t><t>
   507 (Insufficient Storage) - The destination resource does not have
   sufficient space to record the state of the resource after the
   execution of this method.
</t>
</section>

<section title="Example - COPY with Overwrite">
<t>
   This example shows resource
   http://www.ics.uci.edu/~fielding/index.html being copied to the
   location http://www.ics.uci.edu/users/f/fielding/index.html.  The 204
   (No Content) status code indicates the existing resource at the
   destination was overwritten.
</t>
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   COPY /~fielding/index.html HTTP/1.1
   Host: www.ics.uci.edu
   Destination: http://www.ics.uci.edu/users/f/fielding/index.html
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 204 No Content
]]></artwork></figure>
</section>


<section title="Example - COPY with No Overwrite">
<t>
   The following example shows the same copy operation being performed,
   but with the Overwrite header set to "F."  A response of 412
   (Precondition Failed) is returned because the destination resource
   has a non-null state.
</t>
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   COPY /~fielding/index.html HTTP/1.1
   Host: www.ics.uci.edu
   Destination: http://www.ics.uci.edu/users/f/fielding/index.html
   Overwrite: F
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 412 Precondition Failed
]]></artwork></figure>
</section>


<section title="Example - COPY of a Collection">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   COPY /container/ HTTP/1.1
   Host: www.foo.bar
   Destination: http://www.foo.bar/othercontainer/
   Depth: infinity
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <d:propertybehavior xmlns:d="DAV:">
     <d:keepalive>*</d:keepalive>
   </d:propertybehavior>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <d:multistatus xmlns:d="DAV:">
      <d:response>
          <d:href>http://www.foo.bar/othercontainer/R2/</d:href>
          <d:status>HTTP/1.1 412 Precondition Failed</d:status>
      </d:response>
   </d:multistatus>
]]></artwork></figure>
<t>
   The Depth header is unnecessary as the default behavior of COPY on a
   collection is to act as if a "Depth: infinity" header had been
   submitted.  In this example most of the resources, along with the
   collection, were copied successfully. However the collection R2
   failed, most likely due to a problem with maintaining the liveness of
   properties (this is specified by the propertybehavior XML element).
   Because there was an error copying R2, none of R2's members were
   copied.  However no errors were listed for those members due to the
   error minimization rules given in <xref target="copy.for.collections"/>.
</t>
</section>
</section>


<section title="MOVE Method" anchor="METHOD_MOVE">
<iref item="MOVE method" primary="true" />
<iref item="Methods" subitem="MOVE" primary="true" />
<t>
   The MOVE operation on a non-collection resource is the logical
   equivalent of a copy (COPY), followed by consistency maintenance
   processing, followed by a delete of the source, where all three
   actions are performed atomically.  The consistency maintenance step
   allows the server to perform updates caused by the move, such as
   updating all URIs other than the Request-URI which identify the
   source resource, to point to the new destination resource.
   Consequently, the Destination header &MUST; be present on all MOVE
   methods and &MUST; follow all COPY requirements for the COPY part of
   the MOVE method.  All DAV compliant resources &MUST; support the MOVE
   method.  However, support for the MOVE method does not guarantee the
   ability to move a resource to a particular destination.
</t><t>
   For example, separate programs may actually control different sets of
   resources on the same server.  Therefore, it may not be possible to
   move a resource within a namespace that appears to belong to the same
   server.
</t><t>
   If a resource exists at the destination, the destination resource
   will be DELETEd as a side-effect of the MOVE operation, subject to
   the restrictions of the Overwrite header.
</t>

<section title="MOVE for Properties">
<t>
   The behavior of properties on a MOVE, including the effects of the
   propertybehavior XML element, &MUST; be the same as specified in
   <xref target="copy.for.properties"/>.
</t>
</section>

<section title="MOVE for Collections">
<t>
   A MOVE with "Depth: infinity" instructs that the collection
   identified by the Request-URI be moved to the URI specified in the
   Destination header, and all resources identified by its internal
   member URIs are to be moved to locations relative to it, recursively
   through all levels of the collection hierarchy.
</t><t>
   The MOVE method on a collection &MUST; act as if a "Depth: infinity"
   header was used on it.  A client &MUST-NOT; submit a Depth header on a
   MOVE on a collection with any value but "infinity".
</t><t>
   Any headers included with MOVE &MUST; be applied in processing every
   resource to be moved with the exception of the Destination header.
</t><t>
   The behavior of the Destination header is the same as given for COPY
   on collections.
</t><t>
   When the MOVE method has completed processing it &MUST; have created a
   consistent namespace at both the source and destination (see section
   <xref target="http.url.namespace.model" format="counter"/> for the definition of namespace consistency). However, if an
   error occurs while moving an internal collection, the server &MUST-NOT;
   move any resources identified by members of the failed collection
   (i.e., the server must skip the error-causing subtree), as this would
   create an inconsistent namespace. In this case, after detecting the
   error, the move operation &SHOULD; try to finish as much of the
   original move as possible (i.e., the server should still attempt to
   move other subtrees and the resources identified by their members,
   that are not descendents of an error-causing collection).  So, for
   example, if an infinite depth move is performed on collection /a/,
   which contains collections /a/b/ and /a/c/, and an error occurs
   moving /a/b/, an attempt should still be made to try moving /a/c/.
   Similarly, after encountering an error moving a non-collection
   resource as part of an infinite depth move, the server &SHOULD; try to
   finish as much of the original move operation as possible.
</t><t>
   If an error occurs with a resource other than the resource identified
   in the Request-URI then the response &MUST; be a 207 (Multi-Status).
</t><t>
   The 424 (Failed Dependency) status code &SHOULD-NOT; be returned in the
   207 (Multi-Status) response from a MOVE method.  These errors can be
   safely omitted because the client will know that the progeny of a
   resource could not be moved when the client receives an error for the
   parent.  Additionally 201 (Created)/204 (No Content) responses &SHOULD;
   NOT be returned as values in 207 (Multi-Status) responses from a
   MOVE.  These responses can be safely omitted because they are the
   default success codes.
</t>
</section>

<section title="MOVE and the Overwrite Header">
<t>
   If a resource exists at the destination and the Overwrite header is
   "T" then prior to performing the move the server &MUST; perform a
   DELETE with "Depth: infinity" on the destination resource.  If the
   Overwrite header is set to "F" then the operation will fail.
</t>
</section>

<section title="Status Codes">
<t>
   201 (Created) - The source resource was successfully moved, and a new
   resource was created at the destination.
</t><t>
   204 (No Content) - The source resource was successfully moved to a
   pre-existing destination resource.
</t><t>
   403 (Forbidden) - The source and destination URIs are the same.
</t><t>
   409 (Conflict) - A resource cannot be created at the destination
   until one or more intermediate collections have been created.
</t><t>
   412 (Precondition Failed) - The server was unable to maintain the
   liveness of the properties listed in the propertybehavior XML element
   or the Overwrite header is "F" and the state of the destination
   resource is non-null.
</t><t>
   423 (Locked) - The source or the destination resource was locked.
</t><t>
   502 (Bad Gateway) - This may occur when the destination is on another
   server and the destination server refuses to accept the resource.
</t>
</section>

<section title="Example - MOVE of a Non-Collection">
<t>
   This example shows resource
   http://www.ics.uci.edu/~fielding/index.html being moved to the
   location http://www.ics.uci.edu/users/f/fielding/index.html. The
   contents of the destination resource would have been overwritten if
   the destination resource had been non-null.  In this case, since
   there was nothing at the destination resource, the response code is
   201 (Created).
</t>
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   MOVE /~fielding/index.html HTTP/1.1
   Host: www.ics.uci.edu
   Destination: http://www.ics.uci.edu/users/f/fielding/index.html
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 201 Created
   Location: http://www.ics.uci.edu/users/f/fielding/index.html
]]></artwork></figure>
</section>

<section title="Example - MOVE of a Collection">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   MOVE /container/ HTTP/1.1
   Host: www.foo.bar
   Destination: http://www.foo.bar/othercontainer/
   Overwrite: F
   If: (<opaquelocktoken:fe184f2e-6eec-41d0-c765-01adc56e6bb4>)
       (<opaquelocktoken:e454f3f3-acdc-452a-56c7-00a5c91e4b77>)
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <d:propertybehavior xmlns:d='DAV:'>
     <d:keepalive>*</d:keepalive>
   </d:propertybehavior>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <d:multistatus xmlns:d='DAV:'>
     <d:response>
          <d:href>http://www.foo.bar/othercontainer/C2/</d:href>
          <d:status>HTTP/1.1 423 Locked</d:status>
     </d:response>
   </d:multistatus>
]]></artwork></figure>
<t>
   In this example the client has submitted a number of lock tokens with
   the request.  A lock token will need to be submitted for every
   resource, both source and destination, anywhere in the scope of the
   method, that is locked.  In this case the proper lock token was not
   submitted for the destination http://www.foo.bar/othercontainer/C2/.
   This means that the resource /container/C2/ could not be moved.
   Because there was an error copying /container/C2/, none of
   /container/C2's members were copied.  However no errors were listed
   for those members due to the error minimization rules given in
   <xref target="copy.for.collections"/>.  User agent authentication has previously occurred via
   a mechanism outside the scope of the HTTP protocol, in an underlying
   transport layer.
</t>
</section>
</section>


<section title="LOCK Method" anchor="METHOD_LOCK">
<iref item="LOCK method" primary="true" />
<iref item="Methods" subitem="LOCK" primary="true" />
<t>
   The following sections describe the LOCK method, which is used to
   take out a lock of any access type.  These sections on the LOCK
   method describe only those semantics that are specific to the LOCK
   method and are independent of the access type of the lock being
   requested.
</t><t>
   Any resource which supports the LOCK method &MUST;, at minimum, support
   the XML request and response formats defined herein.
</t>

<section title="Operation">
<t>
   A LOCK method invocation creates the lock specified by the lockinfo
   XML element on the Request-URI.  Lock method requests &SHOULD; have a
   XML request body which contains an owner XML element for this lock
   request, unless this is a refresh request. The LOCK request may have
   a Timeout header.
</t><t>
   Clients &MUST; assume that locks may arbitrarily disappear at any time,
   regardless of the value given in the Timeout header.  The Timeout
   header only indicates the behavior of the server if "extraordinary"
   circumstances do not occur.  For example, an administrator may remove
   a lock at any time or the system may crash in such a way that it
   loses the record of the lock's existence. The response &MUST; contain
   the value of the lockdiscovery property in a prop XML element.
</t><t>
   In order to indicate the lock token associated with a newly created
   lock, a Lock-Token response header &MUST; be included in the response
   for every successful LOCK request for a new lock.  Note that the
   Lock-Token header would not be returned in the response for a
   successful refresh LOCK request because a new lock was not created.
</t>
</section>

<section title="The Effect of Locks on Properties and Collections">
<t>
   The scope of a lock is the entire state of the resource, including
   its body and associated properties.  As a result, a lock on a
   resource &MUST; also lock the resource's properties.
</t><t>
   For collections, a lock also affects the ability to add or remove
   members.  The nature of the effect depends upon the type of access
   control involved.
</t>
</section>

<section title="Locking Replicated Resources">
<t>
   A resource may be made available through more than one URI. However
   locks apply to resources, not URIs. Therefore a LOCK request on a
   resource &MUST-NOT; succeed if can not be honored by all the URIs
   through which the resource is addressable.
</t>
</section>

<section title="Depth and Locking">
<t>
   The Depth header may be used with the LOCK method.  Values other than
   0 or infinity &MUST-NOT; be used with the Depth header on a LOCK
   method.  All resources that support the LOCK method &MUST; support the
   Depth header.
</t><t>
   A Depth header of value 0 means to just lock the resource specified
   by the Request-URI.
</t><t>
   If the Depth header is set to infinity then the resource specified in
   the Request-URI along with all its internal members, all the way down
   the hierarchy, are to be locked.  A successful result &MUST; return a
   single lock token which represents all the resources that have been
   locked.  If an UNLOCK is successfully executed on this token, all
   associated resources are unlocked.  If the lock cannot be granted to
   all resources, a 409 (Conflict) status code &MUST; be returned with a
   response entity body containing a multistatus XML element describing
   which resource(s) prevented the lock from being granted.  Hence,
   partial success is not an option.  Either the entire hierarchy is
   locked or no resources are locked.
</t><t>
   If no Depth header is submitted on a LOCK request then the request
   &MUST; act as if a "Depth:infinity" had been submitted.
</t>
</section>

<section title="Interaction with other Methods">
<t>
   The interaction of a LOCK with various methods is dependent upon the
   lock type.  However, independent of lock type, a successful DELETE of
   a resource &MUST; cause all of its locks to be removed.
</t>
</section>

<section title="Lock Compatibility Table">
<texttable>
<preamble>
   The table below describes the behavior that occurs when a lock
   request is made on a resource.
</preamble>
<ttcol width="40%">Current lock state / Lock request</ttcol><ttcol>Shared Lock</ttcol><ttcol>Exclusive Lock</ttcol>
<c>None</c><c>True</c><c>True</c>
<c>Shared Lock</c><c>True</c><c>False</c>
<c>Exclusive Lock</c><c>False</c><c>False*</c>
<postamble>
   Legend: True = lock may be granted.  False = lock &MUST-NOT; be
   granted. *=It is illegal for a principal to request the same lock
   twice.
</postamble>
</texttable>
<t>
   The current lock state of a resource is given in the leftmost column,
   and lock requests are listed in the first row.  The intersection of a
   row and column gives the result of a lock request.  For example, if a
   shared lock is held on a resource, and an exclusive lock is
   requested, the table entry is "false", indicating the lock must not
   be granted.
</t>
</section>

<section title="Status Codes">
<t>
   200 (OK) - The lock request succeeded and the value of the
   lockdiscovery property is included in the body.
</t><t>
   412 (Precondition Failed) - The included lock token was not
   enforceable on this resource or the server could not satisfy the
   request in the lockinfo XML element.
</t><t>
   423 (Locked) - The resource is locked, so the method has been
   rejected.
</t>
</section>

<section title="Example - Simple Lock Request">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   LOCK /workspace/webdav/proposal.doc HTTP/1.1
   Host: webdav.sb.aol.com
   Timeout: Infinite, Second-4100000000
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx
   Authorization: Digest username="ejw",
      realm="ejw@webdav.sb.aol.com", nonce="...",
      uri="/workspace/webdav/proposal.doc",
      response="...", opaque="..."

   <?xml version="1.0" encoding="utf-8" ?>
   <D:lockinfo xmlns:D='DAV:'>
     <D:lockscope><D:exclusive/></D:lockscope>
     <D:locktype><D:write/></D:locktype>
     <D:owner>
          <D:href>http://www.ics.uci.edu/~ejw/contact.html</D:href>
     </D:owner>
   </D:lockinfo>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 200 OK
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:prop xmlns:D="DAV:">
     <D:lockdiscovery>
          <D:activelock>
               <D:locktype><D:write/></D:locktype>
               <D:lockscope><D:exclusive/></D:lockscope>
               <D:depth>Infinity</D:depth>
               <D:owner>
                    <D:href>
                         http://www.ics.uci.edu/~ejw/contact.html
                    </D:href>
               </D:owner>
               <D:timeout>Second-604800</D:timeout>
               <D:locktoken>
                    <D:href>
               opaquelocktoken:e71d4fae-5dec-22d6-fea5-00a0c91e6be4
                    </D:href>
               </D:locktoken>
          </D:activelock>
     </D:lockdiscovery>
   </D:prop>
]]></artwork></figure>
<t>
   This example shows the successful creation of an exclusive write lock
   on resource http://webdav.sb.aol.com/workspace/webdav/proposal.doc.
   The resource http://www.ics.uci.edu/~ejw/contact.html contains
   contact information for the owner of the lock.  The server has an
   activity-based timeout policy in place on this resource, which causes
   the lock to automatically be removed after 1 week (604800 seconds).
   Note that the nonce, response, and opaque fields have not been
   calculated in the Authorization request header.
</t>
</section>

<section title="Example - Refreshing a Write Lock">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   LOCK /workspace/webdav/proposal.doc HTTP/1.1
   Host: webdav.sb.aol.com
   Timeout: Infinite, Second-4100000000
   If: (<opaquelocktoken:e71d4fae-5dec-22d6-fea5-00a0c91e6be4>)
   Authorization: Digest username="ejw",
      realm="ejw@webdav.sb.aol.com", nonce="...",
      uri="/workspace/webdav/proposal.doc",
      response="...", opaque="..."
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 200 OK
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:prop xmlns:D="DAV:">
     <D:lockdiscovery>
          <D:activelock>
               <D:locktype><D:write/></D:locktype>
               <D:lockscope><D:exclusive/></D:lockscope>
               <D:depth>Infinity</D:depth>
               <D:owner>
                    <D:href>
                    http://www.ics.uci.edu/~ejw/contact.html
                    </D:href>
               </D:owner>
               <D:timeout>Second-604800</D:timeout>
               <D:locktoken>
                    <D:href>
               opaquelocktoken:e71d4fae-5dec-22d6-fea5-00a0c91e6be4
                    </D:href>
               </D:locktoken>
          </D:activelock>
     </D:lockdiscovery>
   </D:prop>
]]></artwork></figure>
<t>
   This request would refresh the lock, resetting any time outs.  Notice
   that the client asked for an infinite time out but the server choose
   to ignore the request. In this example, the nonce, response, and
   opaque fields have not been calculated in the Authorization request
   header.
</t>
</section>

<section title="Example - Multi-Resource Lock Request">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   LOCK /webdav/ HTTP/1.1
   Host: webdav.sb.aol.com
   Timeout: Infinite, Second-4100000000
   Depth: infinity
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx
   Authorization: Digest username="ejw",
      realm="ejw@webdav.sb.aol.com", nonce="...",
      uri="/workspace/webdav/proposal.doc",
      response="...", opaque="..."

   <?xml version="1.0" encoding="utf-8" ?>
   <D:lockinfo xmlns:D="DAV:">
     <D:locktype><D:write/></D:locktype>
     <D:lockscope><D:exclusive/></D:lockscope>
     <D:owner>
          <D:href>http://www.ics.uci.edu/~ejw/contact.html</D:href>
     </D:owner>
   </D:lockinfo>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:multistatus xmlns:D="DAV:">
     <D:response>
          <D:href>http://webdav.sb.aol.com/webdav/secret</D:href>
          <D:status>HTTP/1.1 403 Forbidden</D:status>
     </D:response>
     <D:response>
          <D:href>http://webdav.sb.aol.com/webdav/</D:href>
          <D:propstat>
               <D:prop><D:lockdiscovery/></D:prop>
               <D:status>HTTP/1.1 424 Failed Dependency</D:status>
          </D:propstat>
     </D:response>
   </D:multistatus>
]]></artwork></figure>
<t>
   This example shows a request for an exclusive write lock on a
   collection and all its children.  In this request, the client has
   specified that it desires an infinite length lock, if available,
   otherwise a timeout of 4.1 billion seconds, if available. The request
   entity body contains the contact information for the principal taking
   out the lock, in this case a web page URL.
</t><t>
   The error is a 403 (Forbidden) response on the resource
   http://webdav.sb.aol.com/webdav/secret.  Because this resource could
   not be locked, none of the resources were locked.  Note also that the
   lockdiscovery property for the Request-URI has been included as
   required.  In this example the lockdiscovery property is empty which
   means that there are no outstanding locks on the resource.
</t><t>
   In this example, the nonce, response, and opaque fields have not been
   calculated in the Authorization request header.
</t>
</section>
</section>

<section title="UNLOCK Method" anchor="METHOD_UNLOCK">
<iref item="UNLOCK method" primary="true" />
<iref item="Methods" subitem="UNLOCK" primary="true" />
<t>
   The UNLOCK method removes the lock identified by the lock token in
   the Lock-Token request header from the Request-URI, and all other
   resources included in the lock.  If all resources which have been
   locked under the submitted lock token can not be unlocked then the
   UNLOCK request &MUST; fail.
</t><t>
   Any DAV compliant resource which supports the LOCK method &MUST;
   support the UNLOCK method.
</t>

<section title="Example - UNLOCK">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   UNLOCK /workspace/webdav/info.doc HTTP/1.1
   Host: webdav.sb.aol.com
   Lock-Token: <opaquelocktoken:a515cfa4-5da4-22e1-f5b5-00a0451e6bf7>
   Authorization: Digest username="ejw",
      realm="ejw@webdav.sb.aol.com", nonce="...",
      uri="/workspace/webdav/proposal.doc",
      response="...", opaque="..."
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 204 No Content
]]></artwork></figure>
<t>
   In this example, the lock identified by the lock token
   "opaquelocktoken:a515cfa4-5da4-22e1-f5b5-00a0451e6bf7" is
   successfully removed from the resource
   http://webdav.sb.aol.com/workspace/webdav/info.doc.  If this lock
   included more than just one resource, the lock is removed from all
   resources included in the lock.  The 204 (No Content) status code is
   used instead of 200 (OK) because there is no response entity body.
</t><t>
   In this example, the nonce, response, and opaque fields have not been
   calculated in the Authorization request header.
</t>
</section>
</section>

</section>

<section title="HTTP Headers for Distributed Authoring" anchor="http.headers.for.distributed.authoring">

<section title="DAV Header" anchor="HEADER_DAV">
<iref item="DAV header" primary="true"/>
<iref item="Headers" subitem="DAV" primary="true"/>
<figure><artwork type="abnf2616"><![CDATA[
   DAV = "DAV" ":" "1" ["," "2"] ["," 1#extend]
]]></artwork></figure>
<t>
   This header indicates that the resource supports the DAV schema and
   protocol as specified. All DAV compliant resources &MUST; return the
   DAV header on all OPTIONS responses.
</t><t>
   The value is a list of all compliance classes that the resource
   supports.  Note that above a comma has already been added to the 2.
   This is because a resource can not be level 2 compliant unless it is
   also level 1 compliant. Please refer to <xref target="dav.compliance.classes"/> for more details.
   In general, however, support for one compliance class does not entail
   support for any other.
</t>
</section>

<section title="Depth Header" anchor="HEADER_Depth">
<iref item="Depth header" primary="true"/>
<iref item="Headers" subitem="Depth" primary="true"/>
<figure><artwork type="abnf2616"><![CDATA[
   Depth = "Depth" ":" ("0" | "1" | "infinity")
]]></artwork></figure>
<t>
   The Depth header is used with methods executed on resources which
   could potentially have internal members to indicate whether the
   method is to be applied only to the resource ("Depth: 0"), to the
   resource and its immediate children, ("Depth: 1"), or the resource
   and all its progeny ("Depth: infinity").
</t><t>
   The Depth header is only supported if a method's definition
   explicitly provides for such support.
</t><t>
   The following rules are the default behavior for any method that
   supports the Depth header. A method may override these defaults by
   defining different behavior in its definition.
</t><t>
   Methods which support the Depth header may choose not to support all
   of the header's values and may define, on a case by case basis, the
   behavior of the method if a Depth header is not present. For example,
   the MOVE method only supports "Depth: infinity" and if a Depth header
   is not present will act as if a "Depth: infinity" header had been
   applied.
</t><t>
   Clients &MUST-NOT; rely upon methods executing on members of their
   hierarchies in any particular order or on the execution being atomic
   unless the particular method explicitly provides such guarantees.
</t><t>
   Upon execution, a method with a Depth header will perform as much of
   its assigned task as possible and then return a response specifying
   what it was able to accomplish and what it failed to do.
</t><t>
   So, for example, an attempt to COPY a hierarchy may result in some of
   the members being copied and some not.
</t><t>
   Any headers on a method that has a defined interaction with the Depth
   header &MUST; be applied to all resources in the scope of the method
   except where alternative behavior is explicitly defined. For example,
   an If-Match header will have its value applied against every resource
   in the method's scope and will cause the method to fail if the header
   fails to match.
</t><t>
   If a resource, source or destination, within the scope of the method
   with a Depth header is locked in such a way as to prevent the
   successful execution of the method, then the lock token for that
   resource &MUST; be submitted with the request in the If request header.
</t><t>
   The Depth header only specifies the behavior of the method with
   regards to internal children.  If a resource does not have internal
   children then the Depth header &MUST; be ignored.
</t><t>
   Please note, however, that it is always an error to submit a value
   for the Depth header that is not allowed by the method's definition.
   Thus submitting a "Depth: 1" on a COPY, even if the resource does not
   have internal members, will result in a 400 (Bad Request). The method
   should fail not because the resource doesn't have internal members,
   but because of the illegal value in the header.
</t>
</section>


<section title="Destination Header" anchor="HEADER_Destination">
<iref item="Destination header" primary="true"/>
<iref item="Headers" subitem="Destination" primary="true"/>
<figure><artwork type="abnf2616"><![CDATA[
   Destination = "Destination" ":" absoluteURI
]]></artwork></figure>
<t>
   The Destination header specifies the URI which identifies a
   destination resource for methods such as COPY and MOVE, which take
   two URIs as parameters.  Note that the absoluteURI production is
   defined in <xref target="RFC2396" />.
</t>
</section>


<section title="If Header" anchor="HEADER_If">
<iref item="If header" primary="true"/>
<iref item="Headers" subitem="If" primary="true"/>
<figure><artwork type="abnf2616"><![CDATA[
   If = "If" ":" ( 1*No-tag-list | 1*Tagged-list)
   No-tag-list = List
   Tagged-list = Resource 1*List
   Resource = Coded-URL
   List = "(" 1*(["Not"](State-token | "[" entity-tag "]")) ")"
   State-token = Coded-URL
   Coded-URL = "<" absoluteURI ">"
]]></artwork></figure>
<t>
   The If header is intended to have similar functionality to the If-Match
   header defined in section <xref target="RFC2068" x:sec="14.25" x:fmt="number"/> of <xref target="RFC2068" />.  However the If
   header is intended for use with any URI which represents state
   information, referred to as a state token, about a resource as well
   as ETags.  A typical example of a state token is a lock token, and
   lock tokens are the only state tokens defined in this specification.
</t><t>
   All DAV compliant resources &MUST; honor the If header.
</t><t>
   The If header's purpose is to describe a series of state lists.  If
   the state of the resource to which the header is applied does not
   match any of the specified state lists then the request &MUST; fail
   with a 412 (Precondition Failed).  If one of the described state
   lists matches the state of the resource then the request may succeed.
</t><t>
   Note that the absoluteURI production is defined in <xref target="RFC2396" />.
</t>

<section title="No-tag-list Production">
<t>
   The No-tag-list production describes a series of state tokens and
   ETags.  If multiple No-tag-list productions are used then one only
   needs to match the state of the resource for the method to be allowed
   to continue.
</t><t>
   If a method, due to the presence of a Depth or Destination header, is
   applied to multiple resources then the No-tag-list production &MUST; be
   applied to each resource the method is applied to.
</t>

<section title="Example - No-tag-list If Header">
<figure><artwork type="example"><![CDATA[
   If: (<locktoken:a-write-lock-token> ["I am an ETag"]) (["I am another
   ETag"])
]]></artwork></figure>
<t>
   The previous header would require that any resources within the scope
   of the method must either be locked with the specified lock token and
   in the state identified by the "I am an ETag" ETag or in the state
   identified by the second ETag "I am another ETag".  To put the matter
   more plainly one can think of the previous If header as being in the
   form (or (and &lt;locktoken:a-write-lock-token> ["I am an ETag"]) (and
   ["I am another ETag"])).
</t>
</section>
</section>

<section title="Tagged-list Production">
<t>
   The tagged-list production scopes a list production.  That is, it
   specifies that the lists following the resource specification only
   apply to the specified resource.  The scope of the resource
   production begins with the list production immediately following the
   resource production and ends with the next resource production, if
   any.
</t><t>
   When the If header is applied to a particular resource, the Tagged-list
   productions &MUST; be searched to determine if any of the listed
   resources match the operand resource(s) for the current method.  If
   none of the resource productions match the current resource then the
   header &MUST; be ignored.  If one of the resource productions does
   match the name of the resource under consideration then the list
   productions following the resource production &MUST; be applied to the
   resource in the manner specified in the previous section.
</t><t>
   The same URI &MUST-NOT; appear more than once in a resource production
   in an If header.
</t>

<section title="Example - Tagged List If header">
<figure><artwork type='message/http: msgtype="request"'><![CDATA[
   COPY /resource1 HTTP/1.1
   Host: www.foo.bar
   Destination: http://www.foo.bar/resource2
   If: <http://www.foo.bar/resource1> (<locktoken:a-write-lock-token>
   [W/"A weak ETag"]) (["strong ETag"])
   <http://www.bar.bar/random>(["another strong ETag"])
]]></artwork></figure>
<t>
   In this example http://www.foo.bar/resource1 is being copied to
   http://www.foo.bar/resource2.  When the method is first applied to
   http://www.foo.bar/resource1, resource1 must be in the state
   specified by "(&lt;locktoken:a-write-lock-token> [W/"A weak ETag"])
   (["strong ETag"])", that is, it either must be locked with a lock
   token of "locktoken:a-write-lock-token" and have a weak entity tag
   W/"A weak ETag" or it must have a strong entity tag "strong ETag".
</t><t>
   That is the only success condition since the resource
   http://www.bar.bar/random never has the method applied to it (the
   only other resource listed in the If header) and
   http://www.foo.bar/resource2 is not listed in the If header.
</t>
</section>
</section>

<section title="not Production">
<t>
   Every state token or ETag is either current, and hence describes the
   state of a resource, or is not current, and does not describe the
   state of a resource. The boolean operation of matching a state token
   or ETag to the current state of a resource thus resolves to a true or
   false value.  The not production is used to reverse that value.  The
   scope of the not production is the state-token or entity-tag
   immediately following it.
</t>
<figure><artwork type="example"><![CDATA[
   If: (Not <locktoken:write1> <locktoken:write2>)
]]></artwork></figure>
<t>
   When submitted with a request, this If header requires that all
   operand resources must not be locked with locktoken:write1 and must
   be locked with locktoken:write2.
</t>
</section>

<section title="Matching Function">
<t>
   When performing If header processing, the definition of a matching
   state token or entity tag is as follows.
</t><t>
   Matching entity tag: Where the entity tag matches an entity tag
   associated with that resource.
</t><t>
   Matching state token: Where there is an exact match between the state
   token in the If header and any state token on the resource.
</t>
</section>

<section title="If Header and Non-DAV Compliant Proxies">
<t>
   Non-DAV compliant proxies will not honor the If header, since they
   will not understand the If header, and HTTP requires non-understood
   headers to be ignored.  When communicating with HTTP/1.1 proxies, the
   "Cache-Control: no-cache" request header &MUST; be used so as to
   prevent the proxy from improperly trying to service the request from
   its cache.  When dealing with HTTP/1.0 proxies the "Pragma: no-cache"
   request header &MUST; be used for the same reason.
</t>
</section>
</section>


<section title="Lock-Token Header" anchor="HEADER_Lock-Token">
<iref item="Lock-Token header" primary="true"/>
<iref item="Headers" subitem="Lock-Token" primary="true"/>
<figure><artwork type="abnf2616"><![CDATA[
   Lock-Token = "Lock-Token" ":" Coded-URL
]]></artwork></figure>
<t>
   The Lock-Token request header is used with the UNLOCK method to
   identify the lock to be removed.  The lock token in the Lock-Token
   request header &MUST; identify a lock that contains the resource
   identified by Request-URI as a member.
</t><t>
   The Lock-Token response header is used with the LOCK method to
   indicate the lock token created as a result of a successful LOCK
   request to create a new lock.
</t>
</section>


<section title="Overwrite Header" anchor="HEADER_Overwrite">
<iref item="Overwrite header" primary="true"/>
<iref item="Headers" subitem="Overwrite" primary="true"/>
<figure><artwork type="abnf2616"><![CDATA[
   Overwrite = "Overwrite" ":" ("T" | "F")
]]></artwork></figure>
<t>
   The Overwrite header specifies whether the server should overwrite
   the state of a non-null destination resource during a COPY or MOVE.
   A value of "F" states that the server must not perform the COPY or
   MOVE operation if the state of the destination resource is non-null.
   If the overwrite header is not included in a COPY or MOVE request
   then the resource &MUST; treat the request as if it has an overwrite
   header of value "T". While the Overwrite header appears to duplicate
   the functionality of the If-Match: * header of HTTP/1.1, If-Match
   applies only to the Request-URI, and not to the Destination of a COPY
   or MOVE.
</t><t>
   If a COPY or MOVE is not performed due to the value of the Overwrite
   header, the method &MUST; fail with a 412 (Precondition Failed) status
   code.
</t><t>
   All DAV compliant resources &MUST; support the Overwrite header.
</t>
</section>

<section title="Status-URI Response Header" anchor="HEADER_Status-URI">
<iref item="Status-URI header" primary="true"/>
<iref item="Headers" subitem="Status-URI" primary="true"/>
<iref item="102 Processing (status code)"/>
<iref item="Status Codes" subitem="102 Processing"/>
<t>
   The Status-URI response header may be used with the 102 (Processing)
   status code to inform the client as to the status of a method.
</t>
<figure><artwork type="abnf2616">
   Status-URI = "Status-URI" ":" *(Status-Code Coded-URL) ; Status-Code
   is defined in <xref target="RFC2068" x:sec="6.1.1" x:fmt="sec"/> of <xref target="RFC2068" />
</artwork></figure>
<t>
   The URIs listed in the header are source resources which have been
   affected by the outstanding method.  The status code indicates the
   resolution of the method on the identified resource.  So, for
   example, if a MOVE method on a collection is outstanding and a 102
   (Processing) response with a Status-URI response header is returned,
   the included URIs will indicate resources that have had move
   attempted on them and what the result was.
</t>
</section>

<section title="Timeout Request Header" anchor="HEADER_Timeout">
<iref item="Timeout header" primary="true"/>
<iref item="Headers" subitem="Timeout" primary="true"/>
<figure><artwork type="abnf2616">
   TimeOut = "Timeout" ":" 1#TimeType
   TimeType = ("Second-" DAVTimeOutVal | "Infinite" | Other)
   DAVTimeOutVal = 1*digit
   Other = "Extend" field-value   ; See section <xref target="RFC2068" x:fmt="number" x:sec="4.2"/> of <xref target="RFC2068"/>
</artwork></figure>
<t>
   Clients may include Timeout headers in their LOCK requests.  However,
   the server is not required to honor or even consider these requests.
   Clients &MUST-NOT; submit a Timeout request header with any method
   other than a LOCK method.
</t><t>
   A Timeout request header &MUST; contain at least one TimeType and may
   contain multiple TimeType entries. The purpose of listing multiple
   TimeType entries is to indicate multiple different values and value
   types that are acceptable to the client.  The client lists the
   TimeType entries in order of preference.
</t><t>
   Timeout response values &MUST; use a Second value, Infinite, or a
   TimeType the client has indicated familiarity with.  The server may
   assume a client is familiar with any TimeType submitted in a Timeout
   header.
</t><t>
   The "Second" TimeType specifies the number of seconds that will
   elapse between granting of the lock at the server, and the automatic
   removal of the lock.  The timeout value for TimeType "Second" &MUST;
   NOT be greater than 2^32-1.
</t><t>
   The timeout counter &SHOULD; be restarted any time an owner of the lock
   sends a method to any member of the lock, including unsupported
   methods, or methods which are unsuccessful.  However the lock &MUST; be
   refreshed if a refresh LOCK method is successfully received.
</t><t>
   If the timeout expires then the lock may be lost.  Specifically, if
   the server wishes to harvest the lock upon time-out, the server
   &SHOULD; act as if an UNLOCK method was executed by the server on the
   resource using the lock token of the timed-out lock, performed with
   its override authority. Thus logs should be updated with the
   disposition of the lock, notifications should be sent, etc., just as
   they would be for an UNLOCK request.
</t><t>
   Servers are advised to pay close attention to the values submitted by
   clients, as they will be indicative of the type of activity the
   client intends to perform.  For example, an applet running in a
   browser may need to lock a resource, but because of the instability
   of the environment within which the applet is running, the applet may
   be turned off without warning.  As a result, the applet is likely to
   ask for a relatively small timeout value so that if the applet dies,
   the lock can be quickly harvested.  However, a document management
   system is likely to ask for an extremely long timeout because its
   user may be planning on going off-line.
</t><t>
   A client &MUST-NOT; assume that just because the time-out has expired
   the lock has been lost.
</t>
</section>
</section>


<section title="Status Code Extensions to HTTP/1.1" anchor="status.code.extensions.to.http11">
<t>
   The following status codes are added to those defined in HTTP/1.1
   <xref target="RFC2068" />.
</t>

<section title="102 Processing" anchor="STATUS_102">
<iref item="102 Processing (status code)" primary="true"/>
<iref item="Status Codes" subitem="102 Processing" primary="true"/>
<t>
   The 102 (Processing) status code is an interim response used to
   inform the client that the server has accepted the complete request,
   but has not yet completed it.  This status code &SHOULD; only be sent
   when the server has a reasonable expectation that the request will
   take significant time to complete. As guidance, if a method is taking
   longer than 20 seconds (a reasonable, but arbitrary value) to process
   the server &SHOULD; return a 102 (Processing) response. The server &MUST;
   send a final response after the request has been completed.
</t><t>
   Methods can potentially take a long period of time to process,
   especially methods that support the Depth header.  In such cases the
   client may time-out the connection while waiting for a response.  To
   prevent this the server may return a 102 (Processing) status code to
   indicate to the client that the server is still processing the
   method.
</t>
</section>

<section title="207 Multi-Status" anchor="STATUS_207">
<iref item="207 Multi-Status (status code)" primary="true"/>
<iref item="Status Codes" subitem="207 Multi-Status" primary="true"/>
<t>
   The 207 (Multi-Status) status code provides status for multiple
   independent operations (see <xref target="multi-status.response"/> for more information).
</t>
</section>

<section title="422 Unprocessable Entity" anchor="STATUS_422">
<iref item="422 Unprocessable Entity (status code)" primary="true"/>
<iref item="Status Codes" subitem="422 Unprocessable Entity" primary="true"/>
<t>
   The 422 (Unprocessable Entity) status code means the server
   understands the content type of the request entity (hence a
   415(Unsupported Media Type) status code is inappropriate), and the
   syntax of the request entity is correct (thus a 400 (Bad Request)
   status code is inappropriate) but was unable to process the contained
   instructions.  For example, this error condition may occur if an XML
   request body contains well-formed (i.e., syntactically correct), but
   semantically erroneous XML instructions.
</t>
</section>


<section title="423 Locked" anchor="STATUS_423">
<iref item="423 Locked (status code)" primary="true"/>
<iref item="Status Codes" subitem="423 Locked" primary="true"/>
<t>
   The 423 (Locked) status code means the source or destination resource
   of a method is locked.
</t>
</section>


<section title="424 Failed Dependency" anchor="STATUS_424">
<iref item="424 Failed Dependency (status code)" primary="true"/>
<iref item="Status Codes" subitem="424 Failed Dependency" primary="true"/>
<t>
   The 424 (Failed Dependency) status code means that the method could
   not be performed on the resource because the requested action
   depended on another action and that action failed.  For example, if a
   command in a PROPPATCH method fails then, at minimum, the rest of the
   commands will also fail with 424 (Failed Dependency).
</t>
</section>


<section title="507 Insufficient Storage" anchor="STATUS_507">
<iref item="507 Insufficient Storage (status code)" primary="true"/>
<iref item="Status Codes" subitem="507 Insufficient Storage" primary="true"/>
<t>
   The 507 (Insufficient Storage) status code means the method could not
   be performed on the resource because the server is unable to store
   the representation needed to successfully complete the request.  This
   condition is considered to be temporary.  If the request which
   received this status code was the result of a user action, the
   request &MUST-NOT; be repeated until it is requested by a separate user
   action.
</t>
</section>
</section>


<section title="Multi-Status Response" anchor="multi-status.response">
<iref item="207 Multi-Status (status code)"/>
<iref item="Status Codes" subitem="207 Multi-Status"/>
<t>
   The default 207 (Multi-Status) response body is a text/xml or
   application/xml HTTP entity that contains a single XML element called
   multistatus, which contains a set of XML elements called response
   which contain 200, 300, 400, and 500 series status codes generated
   during the method invocation.  100 series status codes &SHOULD-NOT; be
   recorded in a response XML element.
</t>
</section>


<section title="XML Element Definitions" anchor="xml.element.definitions">
<t>
   In the section below, the final line of each section gives the
   element type declaration using the format defined in <xref target="REC-XML" />. The
   "Value" field, where present, specifies further restrictions on the
   allowable contents of the XML element using BNF (i.e., to further
   restrict the values of a PCDATA element).
</t>

<section title="activelock XML Element" anchor="ELEMENT_activelock">
  <x:anchor-alias value="activelock"/>
  <iref item="activelock" subitem="XML element" />
<t><list style="hanging">
  <t hangText="Name:">activelock</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Describes a lock on a resource.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>activelock</x:ref> (<x:ref>lockscope</x:ref>, <x:ref>locktype</x:ref>, <x:ref>depth</x:ref>, <x:ref>owner</x:ref>?, <x:ref>timeout</x:ref>?,
   <x:ref>locktoken</x:ref>?) >
</artwork></figure>

<section title="depth XML Element" anchor="ELEMENT_depth">
  <x:anchor-alias value="depth"/>
  <iref item="depth" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">depth</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">The value of the Depth header.</t>
  <t hangText="Value:">"0" | "1" | "infinity"</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>depth</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="locktoken XML Element" anchor="ELEMENT_locktoken">
  <x:anchor-alias value="locktoken"/>
  <iref item="locktoken" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">locktoken</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">The lock token associated with a lock.</t>
  <t hangText="Description:">The href contains one or more opaque lock token URIs
   which all refer to the same lock (i.e., the OpaqueLockToken-URI
   production in <xref target="opaquelocktoken.lock.token.uri.scheme"/>).</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>locktoken</x:ref> (<x:ref>href</x:ref>+) >
</artwork></figure>
</section>

<section title="timeout XML Element" anchor="ELEMENT_timeout">
  <x:anchor-alias value="timeout"/>
  <iref item="timeout" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">timeout</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">The timeout associated with a lock</t>
  <t hangText="Value:">TimeType ;Defined in <xref target="HEADER_Timeout"/></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>timeout</x:ref> (#PCDATA) >
</artwork></figure>
</section>
</section>

<section title="collection XML Element" anchor="ELEMENT_collection">
  <x:anchor-alias value="collection"/>
  <iref item="DAV:collection resource type" primary="true" />
  <iref item="Resource Types" subitem="DAV:collection" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">collection</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Identifies the associated resource as a collection. The
   resourcetype property of a collection resource &MUST; have this value.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>collection</x:ref> EMPTY >
</artwork></figure>
</section>

<section title="href XML Element" anchor="ELEMENT_href">
  <x:anchor-alias value="href"/>
  <iref item="href" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">href</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Identifies the content of the element as a URI.</t>
  <t hangText="Value:">URI ; See section <xref target="RFC2068" x:fmt="number" x:sec="3.2.1"/> of <xref target="RFC2068" /></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>href</x:ref> (#PCDATA)>
</artwork></figure>
</section>

<section title="link XML Element" anchor="ELEMENT_link">
  <x:anchor-alias value="link"/>
  <iref item="link" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">link</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Identifies the property as a link and contains the source
   and destination of that link.</t>
  <t hangText="Description:">The link XML element is used to provide the sources and
   destinations of a link.  The name of the property containing the link
   XML element provides the type of the link.  Link is a multi-valued
   element, so multiple links may be used together to indicate multiple
   links with the same type.  The values in the href XML elements inside
   the src and dst XML elements of the link XML element &MUST-NOT; be
   rejected if they point to resources which do not exist.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>link</x:ref> (<x:ref>src</x:ref>+, <x:ref>dst</x:ref>+) >
</artwork></figure>

<section title="dst XML Element" anchor="ELEMENT_dst">
  <x:anchor-alias value="dst"/>
  <iref item="dst" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">dst</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Indicates the destination of a link</t>
  <t hangText="Value:">URI</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>dst</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="src XML Element" anchor="ELEMENT_src">
  <x:anchor-alias value="src"/>
  <iref item="src" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">src</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Indicates the source of a link.</t>
  <t hangText="Value:">URI</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>src</x:ref> (#PCDATA) >
</artwork></figure>
</section>
</section>

<section title="lockentry XML Element" anchor="ELEMENT_lockentry">
  <x:anchor-alias value="lockentry"/>
  <iref item="lockentry" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">lockentry</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Defines the types of locks that can be used with the
   resource.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>lockentry</x:ref> (<x:ref>lockscope</x:ref>, <x:ref>locktype</x:ref>) >
</artwork></figure>
</section>

<section title="lockinfo XML Element" anchor="ELEMENT_lockinfo">
  <x:anchor-alias value="lockinfo"/>
  <iref item="lockinfo" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">lockinfo</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">The lockinfo XML element is used with a LOCK method to
   specify the type of lock the client wishes to have created.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>lockinfo</x:ref> (<x:ref>lockscope</x:ref>, <x:ref>locktype</x:ref>, <x:ref>owner</x:ref>?) >
</artwork></figure>
</section>

<section title="lockscope XML Element" anchor="ELEMENT_lockscope">
  <x:anchor-alias value="lockscope"/>
  <iref item="lockscope" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">lockscope</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies whether a lock is an exclusive lock, or a
   shared lock.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>lockscope</x:ref> (<x:ref>exclusive</x:ref> | <x:ref>shared</x:ref>) >
</artwork></figure>

<section title="exclusive XML Element" anchor="ELEMENT_exclusive">
  <x:anchor-alias value="exclusive"/>
  <iref item="exclusive" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">exclusive</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies an exclusive lock</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>exclusive</x:ref> EMPTY >
</artwork></figure>
</section>

<section title="shared XML Element" anchor="ELEMENT_shared">
  <x:anchor-alias value="shared"/>
  <iref item="shared" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">shared</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies a shared lock</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>shared</x:ref> EMPTY >
</artwork></figure>
</section>
</section>

<section title="locktype XML Element" anchor="ELEMENT_locktype">
  <x:anchor-alias value="locktype"/>
  <iref item="locktype" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">locktype</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies the access type of a lock.  At present, this
   specification only defines one lock type, the write lock.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>locktype</x:ref> (<x:ref>write</x:ref>) >
</artwork></figure>

<section title="write XML Element" anchor="ELEMENT_write">
  <x:anchor-alias value="write"/>
  <iref item="write" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">write</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies a write lock.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>write</x:ref> EMPTY >
</artwork></figure>
</section>
</section>

<section title="multistatus XML Element" anchor="ELEMENT_multistatus">
  <x:anchor-alias value="multistatus"/>
  <iref item="multistatus" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">multistatus</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains multiple response messages.</t>
  <t hangText="Description:">The responsedescription at the top level is used to
   provide a general message describing the overarching nature of the
   response.  If this value is available an application may use it
   instead of presenting the individual response descriptions contained
   within the responses.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>multistatus</x:ref> (<x:ref>response</x:ref>+, <x:ref>responsedescription</x:ref>?) >
</artwork></figure>

<section title="response XML Element" anchor="ELEMENT_response">
  <x:anchor-alias value="response"/>
  <iref item="response" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">response</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Holds a single response describing the effect of a
   method on resource and/or its properties.</t>
  <t hangText="Description:">A particular href &MUST-NOT; appear more than once as the
   child of a response XML element under a multistatus XML element.
   This requirement is necessary in order to keep processing costs for a
   response to linear time.  Essentially, this prevents having to search
   in order to group together all the responses by href.  There are,
   however, no requirements regarding ordering based on href values.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>response</x:ref> (<x:ref>href</x:ref>, ((<x:ref>href</x:ref>*, <x:ref>status</x:ref>)|(<x:ref>propstat</x:ref>+)),
   <x:ref>responsedescription</x:ref>?) >
</artwork></figure>


<section title="propstat XML Element" anchor="ELEMENT_propstat">
  <x:anchor-alias value="propstat"/>
  <iref item="propstat" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">propstat</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Groups together a prop and status element that is
   associated with a particular href element.</t>
  <t hangText="Description:">The propstat XML element &MUST; contain one prop XML
   element and one status XML element.  The contents of the prop XML
   element &MUST; only list the names of properties to which the result in
   the status element applies.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>propstat</x:ref> (<x:ref>prop</x:ref>, <x:ref>status</x:ref>, <x:ref>responsedescription</x:ref>?) >
</artwork></figure>
</section>

<section title="status XML Element" anchor="ELEMENT_status">
  <x:anchor-alias value="status"/>
  <iref item="status" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">status</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Holds a single HTTP status-line</t>
  <t hangText="Value:">status-line   ;status-line defined in <xref target="RFC2068" /></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>status</x:ref> (#PCDATA) >
</artwork></figure>
</section>
</section>

<section title="responsedescription XML Element" anchor="ELEMENT_responsedescription">
  <x:anchor-alias value="responsedescription"/>
  <iref item="responsedescription" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">responsedescription</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains a message that can be displayed to the user
   explaining the nature of the response.</t>
  <t hangText="Description:">This XML element provides information suitable to be
   presented to a user.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>responsedescription</x:ref> (#PCDATA) >
</artwork></figure>
</section>
</section>

<section title="owner XML Element" anchor="ELEMENT_owner">
  <x:anchor-alias value="owner"/>
  <iref item="owner" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">owner</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Provides information about the principal taking out a
   lock.</t>
  <t hangText="Description:">The owner XML element provides information sufficient
   for either directly contacting a principal (such as a telephone
   number or Email URI), or for discovering the principal (such as the
   URL of a homepage) who owns a lock.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>owner</x:ref> ANY>
</artwork></figure>
</section>


<section title="prop XML element" anchor="ELEMENT_prop">
  <x:anchor-alias value="prop"/>
  <iref item="prop" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">prop</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains properties related to a resource.</t>
  <t hangText="Description:">The prop XML element is a generic container for
   properties defined on resources.  All elements inside a prop XML
   element &MUST; define properties related to the resource.  No other
   elements may be used inside of a prop element.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>prop</x:ref> ANY>
</artwork></figure>
</section>

<section title="propertybehavior XML element" anchor="ELEMENT_propertybehaviour">
  <x:anchor-alias value="propertybehavior"/>
  <iref item="propertybehaviour" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">propertybehavior</t>
  <t hangText="Namespace:">DAV:</t>
   <t hangText="Purpose:">Specifies
   how properties are handled during a COPY or MOVE.</t>
  <t hangText="Description:">The propertybehavior XML element specifies how
   properties are handled during a COPY or MOVE.  If this XML element is
   not included in the request body then the server is expected to act
   as defined by the default property handling behavior of the
   associated method.  All WebDAV compliant resources &MUST; support the
   propertybehavior XML element.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>propertybehavior</x:ref> (<x:ref>omit</x:ref> | <x:ref>keepalive</x:ref>) >
</artwork></figure>

<section title="keepalive XML element" anchor="ELEMENT_keepalive">
  <x:anchor-alias value="keepalive"/>
  <iref item="keepalive" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">keepalive</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies requirements for the copying/moving of live
   properties.</t>
  <t hangText="Description:">If a list of URIs is included as the value of keepalive
   then the named properties &MUST; be "live" after they are copied
   (moved) to the destination resource of a COPY (or MOVE).  If the
   value "*" is given for the keepalive XML element, this designates
   that all live properties on the source resource &MUST; be live on the
   destination.  If the requirements specified by the keepalive element
   can not be honored then the method &MUST; fail with a 412 (Precondition
   Failed).  All DAV compliant resources &MUST; support the keepalive XML
   element for use with the COPY and MOVE methods.</t>
  <t hangText="Value:">"*" ; #PCDATA value can only be "*"</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>keepalive</x:ref> (#PCDATA | <x:ref>href</x:ref>+) >
</artwork></figure>
</section>


<section title="omit XML element" anchor="ELEMENT_omit">
  <x:anchor-alias value="omit"/>
  <iref item="omit" subitem="XML element"/>
<t><list style="hanging">
  <t hangText="Name:">omit</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">The omit XML element instructs the server that it should
   use best effort to copy properties but a failure to copy a property
   &MUST-NOT; cause the method to fail.</t>
  <t hangText="Description:">The default behavior
   for a COPY or MOVE is to copy/move all properties or fail the method.
   In certain circumstances, such as when a server copies a resource
   over another protocol such as FTP, it may not be possible to
   copy/move the properties associated with the resource. Thus any
   attempt to copy/move over FTP would always have to fail because
   properties could not be moved over, even as dead properties.  All DAV
   compliant resources &MUST; support the omit XML element on COPY/MOVE
   methods.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>omit</x:ref> EMPTY >
</artwork></figure>
</section>
</section>

<section title="propertyupdate XML element" anchor="ELEMENT_propertyupdate">
  <x:anchor-alias value="propertyupdate"/>
  <iref item="propertyupdate" subitem="XML element" />
<t><list style="hanging">
  <t hangText="Name:">propertyupdate</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains a request to alter the properties on a
   resource.</t>
  <t hangText="Description:">This XML element is a container for the information
   required to modify the properties on the resource.  This XML element
   is multi-valued.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>propertyupdate</x:ref> (<x:ref>remove</x:ref> | <x:ref>set</x:ref>)+ >
</artwork></figure>

<section title="remove XML element" anchor="ELEMENT_remove">
  <x:anchor-alias value="remove"/>
  <iref item="remove" subitem="XML element" /><t><list style="hanging">
  <t hangText="Name:">remove</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Lists the DAV properties to be removed from a resource.</t>
  <t hangText="Description:">Remove instructs that the properties specified in prop
   should be removed.  Specifying the removal of a property that does
   not exist is not an error.  All the XML elements in a prop XML
   element inside of a remove XML element &MUST; be empty, as only the
   names of properties to be removed are required.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>remove</x:ref> (<x:ref>prop</x:ref>) >
</artwork></figure>
</section>

<section title="set XML element" anchor="ELEMENT_set">
  <x:anchor-alias value="set"/>
  <iref item="set" subitem="XML element" /><t><list style="hanging">
  <t hangText="Name:">set</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Lists the DAV property values to be set for a resource.</t>
  <t hangText="Description:">The set XML element &MUST; contain only a prop XML
   element.  The elements contained by the prop XML element inside the
   set XML element &MUST; specify the name and value of properties that
   are set on the resource identified by Request-URI.  If a property
   already exists then its value is replaced. Language tagging
   information in the property's value (in the "xml:lang" attribute, if
   present) &MUST; be persistently stored along with the property, and
   &MUST; be subsequently retrievable using PROPFIND.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>set</x:ref> (<x:ref>prop</x:ref>) >
</artwork></figure>
</section>
</section>

<section title="propfind XML Element" anchor="ELEMENT_propfind">
  <x:anchor-alias value="propfind"/>
  <iref item="propfind" subitem="XML element" /><t><list style="hanging">
  <t hangText="Name:">propfind</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies the properties to be returned from a PROPFIND
   method.  Two special elements are specified for use with propfind,
   allprop and propname.  If prop is used inside propfind it &MUST; only
   contain property names, not values.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>propfind</x:ref> (<x:ref>allprop</x:ref> | <x:ref>propname</x:ref> | <x:ref>prop</x:ref>) >
</artwork></figure>

<section title="allprop XML Element" anchor="ELEMENT_allprop">
  <x:anchor-alias value="allprop"/>
  <iref item="allprop" subitem="XML element" /><t><list style="hanging">
  <t hangText="Name:">allprop</t>
  <t hangText="Namespace:">DAV:</t>
   <t hangText="Purpose:">The allprop XML
   element specifies that all property names and values on the resource
   are to be returned.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>allprop</x:ref> EMPTY >
</artwork></figure>
</section>

<section title="propname XML Element" anchor="ELEMENT_propname">
  <x:anchor-alias value="propname"/>
  <iref item="propname" subitem="XML element" /><t><list style="hanging">
  <t hangText="Name:">propname</t>
  <t hangText="Namespace:">DAV:</t>
   <t hangText="Purpose:">The propname XML
   element specifies that only a list of property names on the resource
   is to be returned.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>propname</x:ref> EMPTY >
</artwork></figure>
</section>
</section>
</section>



<section title="DAV Properties" anchor="dav.properties">
<t>
   For DAV properties, the name of the property is also the same as the
   name of the XML element that contains its value. In the section
   below, the final line of each section gives the element type
   declaration using the format defined in <xref target="REC-XML" />. The "Value" field,
   where present, specifies further restrictions on the allowable
   contents of the XML element using BNF (i.e., to further restrict the
   values of a PCDATA element).
</t>

<section title="creationdate Property" anchor="PROPERTY_creationdate" >
  <x:anchor-alias value="creationdate"/>
  <iref item="DAV:creationdate property" primary="true" />
<iref item="Properties" subitem="DAV:creationdate" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">creationdate</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Records the time and date the resource was created.</t>
  <t hangText="Value:">date-time ; See <xref target="iso.8601.date.and.time.profile"/></t>
  <t hangText="Description:">The creationdate property should be defined on all DAV
   compliant resources.  If present, it contains a timestamp of the
   moment when the resource was created (i.e., the moment it had non-null
   state).</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>creationdate</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="displayname Property" anchor="PROPERTY_displayname">
  <x:anchor-alias value="displayname"/>
  <iref item="DAV:displayname property" primary="true" />
<iref item="Properties" subitem="DAV:displayname" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">displayname</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Provides a name for the resource that is suitable for
   presentation to a user.</t>
  <t hangText="Description:">The displayname property should be defined on all DAV
   compliant resources.  If present, the property contains a description
   of the resource that is suitable for presentation to a user.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>displayname</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="getcontentlanguage Property" anchor="PROPERTY_getcontentlanguage">
  <x:anchor-alias value="getcontentlanguage"/>
  <iref item="DAV:getcontentlanguage property" primary="true" />
  <iref item="Properties" subitem="DAV:getcontentlanguage" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">getcontentlanguage</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains the Content-Language header returned by a GET
   without accept headers</t>
  <t hangText="Description:">The getcontentlanguage property &MUST; be defined on any
   DAV compliant resource that returns the Content-Language header on a
   GET.</t>
  <t hangText="Value:">language-tag   ;language-tag is defined in section <xref target="RFC2068" x:fmt="number" x:sec="14.13"/>
   of <xref target="RFC2068" /></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>getcontentlanguage</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="getcontentlength Property" anchor="PROPERTY_getcontentlength">
  <x:anchor-alias value="getcontentlength"/>
  <iref item="DAV:getcontentlength property" primary="true" />
  <iref item="Properties" subitem="DAV:getcontentlength" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">getcontentlength</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains the Content-Length header returned by a GET
   without accept headers.</t>
  <t hangText="Description:">The getcontentlength property &MUST; be defined on any
   DAV compliant resource that returns the Content-Length header in
   response to a GET.</t>
  <t hangText="Value:">content-length ; see section <xref target="RFC2068" x:fmt="number" x:sec="14.14"/> of <xref target="RFC2068" /></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>getcontentlength</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="getcontenttype Property" anchor="PROPERTY_getcontenttype">
  <x:anchor-alias value="getcontenttype"/>
  <iref item="DAV:getcontenttype property" primary="true" />
  <iref item="Properties" subitem="DAV:getcontenttype" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">getcontenttype</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains the Content-Type header returned by a GET
   without accept headers.</t>
  <t hangText="Description:">This getcontenttype property &MUST; be defined on any DAV
   compliant resource that returns the Content-Type header in response
   to a GET.</t>
  <t hangText="Value:">media-type   ; defined in section <xref target="RFC2068" x:fmt="number" x:sec="3.7"/> of <xref target="RFC2068" /></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>getcontenttype</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="getetag Property" anchor="PROPERTY_getetag">
  <x:anchor-alias value="getetag"/>
  <iref item="DAV:getetag property" primary="true" />
  <iref item="Properties" subitem="DAV:getetag" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">getetag</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains the ETag header returned by a GET without
   accept headers.</t>
  <t hangText="Description:">The getetag property &MUST; be defined on any DAV
   compliant resource that returns the Etag header.</t>
  <t hangText="Value:">entity-tag  ; defined in section <xref target="RFC2068" x:fmt="number" x:sec="3.11"/> of <xref target="RFC2068" /></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>getetag</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="getlastmodified Property" anchor="PROPERTY_getlastmodified">
  <x:anchor-alias value="getlastmodified"/>
  <iref item="DAV:getlastmodified property" primary="true" />
  <iref item="Properties" subitem="DAV:getlastmodified" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">getlastmodified</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Contains the Last-Modified header returned by a GET
   method without accept headers.</t>
  <t hangText="Description:">Note that the last-modified date on a resource may
   reflect changes in any part of the state of the resource, not
   necessarily just a change to the response to the GET method.  For
   example, a change in a property may cause the last-modified date to
   change. The getlastmodified property &MUST; be defined on any DAV
   compliant resource that returns the Last-Modified header in response
   to a GET.</t>
  <t hangText="Value:">HTTP-date  ; defined in section <xref target="RFC2068" x:fmt="number" x:sec="3.3.1"/> of <xref target="RFC2068" /></t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>getlastmodified</x:ref> (#PCDATA) >
</artwork></figure>
</section>

<section title="lockdiscovery Property" anchor="PROPERTY_lockdiscovery">
  <x:anchor-alias value="lockdiscovery"/>
  <iref item="DAV:lockdiscovery property" primary="true" />
  <iref item="Properties" subitem="DAV:lockdiscovery" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">lockdiscovery</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Describes the active locks on a resource</t>
  <t hangText="Description:">The lockdiscovery property returns a listing of who has
   a lock, what type of lock he has, the timeout type and the time
   remaining on the timeout, and the associated lock token.  The server
   is free to withhold any or all of this information if the requesting
   principal does not have sufficient access rights to see the requested
   data.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>lockdiscovery</x:ref> (<x:ref>activelock</x:ref>)* >
</artwork></figure>

<section title="Example - Retrieving the lockdiscovery Property">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   PROPFIND /container/ HTTP/1.1
   Host: www.foo.bar
   Content-Length: xxxx
   Content-Type: text/xml; charset="utf-8"

   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D='DAV:'>
     <D:prop><D:lockdiscovery/></D:prop>
   </D:propfind>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:multistatus xmlns:D='DAV:'>
     <D:response>
          <D:href>http://www.foo.bar/container/</D:href>
          <D:propstat>
               <D:prop>
                    <D:lockdiscovery>
                         <D:activelock>
                              <D:locktype><D:write/></D:locktype>
                              <D:lockscope><D:exclusive/></D:lockscope>
                              <D:depth>0</D:depth>
                              <D:owner>Jane Smith</D:owner>
                              <D:timeout>Infinite</D:timeout>
                              <D:locktoken>
                                   <D:href>
               opaquelocktoken:f81de2ad-7f3d-a1b2-4f3c-00a0c91a9d76
                                   </D:href>
                              </D:locktoken>
                         </D:activelock>
                    </D:lockdiscovery>
               </D:prop>
               <D:status>HTTP/1.1 200 OK</D:status>
          </D:propstat>
     </D:response>
   </D:multistatus>
]]></artwork></figure>
<t>
   This resource has a single exclusive write lock on it, with an
   infinite timeout.
</t>
</section>
</section>

<section title="resourcetype Property" anchor="PROPERTY_resourcetype">
  <x:anchor-alias value="resourcetype"/>
  <iref item="DAV:resourcetype property" primary="true" />
  <iref item="Properties" subitem="DAV:resourcetype" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">resourcetype</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">Specifies the nature of the resource.</t>
  <t hangText="Description:">The resourcetype property &MUST; be defined on all DAV
   compliant resources.  The default value is empty.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>resourcetype</x:ref> ANY >
</artwork></figure>
</section>

<section title="source Property" anchor="PROPERTY_source">
  <x:anchor-alias value="source"/>
  <iref item="DAV:source property" primary="true" />
  <iref item="Properties" subitem="DAV:source" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">source</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">The destination of the source link identifies the
   resource that contains the unprocessed source of the link's source.</t>
  <t hangText="Description:">The source of the link (src) is typically the URI of the
   output resource on which the link is defined, and there is typically
   only one destination (dst) of the link, which is the URI where the
   unprocessed source of the resource may be accessed.  When more than
   one link destination exists, this specification asserts no policy on
   ordering.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>source</x:ref> (<x:ref>link</x:ref>)* >
</artwork></figure>

<section title="Example - A source Property">
<figure><artwork type="example"><![CDATA[
   <?xml version="1.0" encoding="utf-8" ?>
   <D:prop xmlns:D="DAV:" xmlns:F="http://www.foocorp.com/Project/">
     <D:source>
          <D:link>
               <F:projfiles>Source</F:projfiles>
               <D:src>http://foo.bar/program</D:src>
               <D:dst>http://foo.bar/src/main.c</D:dst>
          </D:link>
          <D:link>
               <F:projfiles>Library</F:projfiles>
               <D:src>http://foo.bar/program</D:src>
               <D:dst>http://foo.bar/src/main.lib</D:dst>
          </D:link>
          <D:link>
               <F:projfiles>Makefile</F:projfiles>
               <D:src>http://foo.bar/program</D:src>
               <D:dst>http://foo.bar/src/makefile</D:dst>
          </D:link>
     </D:source>
   </D:prop>
]]></artwork></figure>
<t>
   In this example the resource http://foo.bar/program has a source
   property that contains three links.  Each link contains three
   elements, two of which, src and dst, are part of the DAV schema
   defined in this document, and one which is defined by the schema
   http://www.foocorp.com/project/ (Source, Library, and Makefile).  A
   client which only implements the elements in the DAV spec will not
   understand the foocorp elements and will ignore them, thus seeing the
   expected source and destination links.  An enhanced client may know
   about the foocorp elements and be able to present the user with
   additional information about the links.  This example demonstrates
   the power of XML markup, allowing element values to be enhanced
   without breaking older clients.
</t>
</section>
</section>

<section title="supportedlock Property" anchor="PROPERTY_supportedlock">
  <x:anchor-alias value="supportedlock"/>
  <iref item="DAV:supportedlock property" primary="true" />
  <iref item="Properties" subitem="DAV:supportedlock" primary="true"/>
<t><list style="hanging">
  <t hangText="Name:">supportedlock</t>
  <t hangText="Namespace:">DAV:</t>
  <t hangText="Purpose:">To provide a listing of the lock capabilities supported
   by the resource.</t>
  <t hangText="Description:">The supportedlock property of a resource returns a
   listing of the combinations of scope and access types which may be
   specified in a lock request on the resource.  Note that the actual
   contents are themselves controlled by access controls so a server is
   not required to provide information the client is not authorized to
   see.</t>
</list></t>
<figure><artwork type="application/xml-dtd">
   &lt;!ELEMENT <x:ref>supportedlock</x:ref> (<x:ref>lockentry</x:ref>)* >
</artwork></figure>

<section title="Example - Retrieving the supportedlock Property">
<figure><preamble>
   >>Request</preamble>
<artwork type='message/http: msgtype="request"'><![CDATA[
   PROPFIND  /container/ HTTP/1.1
   Host: www.foo.bar
   Content-Length: xxxx
   Content-Type: text/xml; charset="utf-8"

   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D="DAV:">
     <D:prop><D:supportedlock/></D:prop>
   </D:propfind>
]]></artwork></figure>
<figure><preamble>
   >>Response</preamble>
<artwork type='message/http: msgtype="response"'><![CDATA[
   HTTP/1.1 207 Multi-Status
   Content-Type: text/xml; charset="utf-8"
   Content-Length: xxxx

   <?xml version="1.0" encoding="utf-8" ?>
   <D:multistatus xmlns:D="DAV:">
     <D:response>
          <D:href>http://www.foo.bar/container/</D:href>
          <D:propstat>
               <D:prop>
                    <D:supportedlock>
                         <D:lockentry>
                              <D:lockscope><D:exclusive/></D:lockscope>
                              <D:locktype><D:write/></D:locktype>
                         </D:lockentry>
                         <D:lockentry>
                              <D:lockscope><D:shared/></D:lockscope>
                              <D:locktype><D:write/></D:locktype>
                         </D:lockentry>
                    </D:supportedlock>
               </D:prop>
               <D:status>HTTP/1.1 200 OK</D:status>
          </D:propstat>
     </D:response>
   </D:multistatus>
]]></artwork></figure>
</section>
</section>
</section>


<section title="Instructions for Processing XML in DAV" anchor="instructions.for.processing.xml.in.dav">
<t>
   All DAV compliant resources &MUST; ignore any unknown XML element and
   all its children encountered while processing a DAV method that uses
   XML as its command language.
</t><t>
   This restriction also applies to the processing, by clients, of DAV
   property values where unknown XML elements &SHOULD; be ignored unless
   the property's schema declares otherwise.
</t><t>
   This restriction does not apply to setting dead DAV properties on the
   server where the server &MUST; record unknown XML elements.
</t><t>
   Additionally, this restriction does not apply to the use of XML where
   XML happens to be the content type of the entity body, for example,
   when used as the body of a PUT.
</t><t>
   Since XML can be transported as text/xml or application/xml, a DAV
   server &MUST; accept DAV method requests with XML parameters
   transported as either text/xml or application/xml, and DAV client
   &MUST; accept XML responses using either text/xml or application/xml.
</t>
</section>


<section title="DAV Compliance Classes" anchor="dav.compliance.classes">
<t>
   A DAV compliant resource can choose from two classes of compliance.
   A client can discover the compliance classes of a resource by
   executing OPTIONS on the resource, and examining the "DAV" header
   which is returned.
</t><t>
   Since this document describes extensions to the HTTP/1.1 protocol,
   minimally all DAV compliant resources, clients, and proxies &MUST; be
   compliant with <xref target="RFC2068" />.
</t><t>
   Compliance classes are not necessarily sequential. A resource that is
   class 2 compliant must also be class 1 compliant; but if additional
   compliance classes are defined later, a resource that is class 1, 2,
   and 4 compliant might not be class 3 compliant.  Also note that
   identifiers other than numbers may be used as compliance class
   identifiers.
</t>

<section title="Class 1">
<iref item="DAV header" subitem="compliance class '1'" primary="true"/>
<t>
   A class 1 compliant resource &MUST; meet all "MUST" requirements in all
   sections of this document.
</t><t>
   Class 1 compliant resources &MUST; return, at minimum, the value "1" in
   the DAV header on all responses to the OPTIONS method.
</t>
</section>

<section title="Class 2">
<iref item="DAV header" subitem="compliance class '2'" primary="true"/>
<t>
   A class 2 compliant resource &MUST; meet all class 1 requirements and
   support the LOCK method, the supportedlock property, the
   lockdiscovery property, the Time-Out response header and the Lock-Token
   request header.  A class "2" compliant resource &SHOULD; also
   support the Time-Out request header and the owner XML element.
</t><t>
   Class 2 compliant resources &MUST; return, at minimum, the values "1"
   and "2" in the DAV header on all responses to the OPTIONS method.
</t>
</section>
</section>


<section title="Internationalization Considerations" anchor="internationalization.considerations">
<t>
   In the realm of internationalization, this specification complies
   with the IETF Character Set Policy <xref target="RFC2277" />. In this specification,
   human-readable fields can be found either in the value of a property,
   or in an error message returned in a response entity body.  In both
   cases, the human-readable content is encoded using XML, which has
   explicit provisions for character set tagging and encoding, and
   requires that XML processors read XML elements encoded, at minimum,
   using the UTF-8 <xref target="UTF-8" /> encoding of the ISO 10646 multilingual plane.
   XML examples in this specification demonstrate use of the charset
   parameter of the Content-Type header, as defined in <xref target="RFC2376" />, as
   well as the XML "encoding" attribute, which together provide charset
   identification information for MIME and XML processors.
</t><t>
   XML also provides a language tagging capability for specifying the
   language of the contents of a particular XML element.  XML uses
   either IANA registered language tags (see <xref target="RFC1766" />) or ISO 639
   language tags <xref target="ISO-639" /> in the "xml:lang" attribute of an XML element
   to identify the language of its content and attributes.
</t><t>
   WebDAV applications &MUST; support the character set tagging, character
   set encoding, and the language tagging functionality of the XML
   specification.  Implementors of WebDAV applications are strongly
   encouraged to read "XML Media Types" <xref target="RFC2376" /> for instruction on
   which MIME media type to use for XML transport, and on use of the
   charset parameter of the Content-Type header.
</t><t>
   Names used within this specification fall into three categories:
   names of protocol elements such as methods and headers, names of XML
   elements, and names of properties.  Naming of protocol elements
   follows the precedent of HTTP, using English names encoded in USASCII
   for methods and headers.  Since these protocol elements are not
   visible to users, and are in fact simply long token identifiers, they
   do not need to support encoding in multiple character sets.
   Similarly, though the names of XML elements used in this
   specification are English names encoded in UTF-8, these names are not
   visible to the user, and hence do not need to support multiple
   character set encodings.
</t><t>
   The name of a property defined on a resource is a URI.  Although some
   applications (e.g., a generic property viewer) will display property
   URIs directly to their users, it is expected that the typical
   application will use a fixed set of properties, and will provide a
   mapping from the property name URI to a human-readable field when
   displaying the property name to a user.  It is only in the case where
   the set of properties is not known ahead of time that an application
   need display a property name URI to a user. We recommend that
   applications provide human-readable property names wherever feasible.
</t><t>
   For error reporting, we follow the convention of HTTP/1.1 status
   codes, including with each status code a short, English description
   of the code (e.g., 423 (Locked)).  While the possibility exists that
   a poorly crafted user agent would display this message to a user,
   internationalized applications will ignore this message, and display
   an appropriate message in the user's language and character set.
</t><t>
   Since interoperation of clients and servers does not require locale
   information, this specification does not specify any mechanism for
   transmission of this information.
</t>
</section>

<section title="Security Considerations" anchor="security.considerations">
<t>
   This section is provided to detail issues concerning security
   implications of which WebDAV applications need to be aware.
</t><t>
   All of the security considerations of HTTP/1.1 (discussed in
   <xref target="RFC2068" />) and XML (discussed in <xref target="RFC2376" />) also apply to WebDAV. In
   addition, the security risks inherent in remote authoring require
   stronger authentication technology, introduce several new privacy
   concerns, and may increase the hazards from poor server design.
   These issues are detailed below.
</t>

<section title="Authentication of Clients">
<t>
   Due to their emphasis on authoring, WebDAV servers need to use
   authentication technology to protect not just access to a network
   resource, but the integrity of the resource as well.  Furthermore,
   the introduction of locking functionality requires support for
   authentication.
</t><t>
   A password sent in the clear over an insecure channel is an
   inadequate means for protecting the accessibility and integrity of a
   resource as the password may be intercepted.  Since Basic
   authentication for HTTP/1.1 performs essentially clear text
   transmission of a password, Basic authentication &MUST-NOT; be used to
   authenticate a WebDAV client to a server unless the connection is
   secure. Furthermore, a WebDAV server &MUST-NOT; send Basic
   authentication credentials in a WWW-Authenticate header unless the
   connection is secure.  Examples of secure connections include a
   Transport Layer Security (TLS) connection employing a strong cipher
   suite with mutual authentication of client and server, or a
   connection over a network which is physically secure, for example, an
   isolated network in a building with restricted access.
</t><t>
   WebDAV applications &MUST; support the Digest authentication scheme
   <xref target="RFC2069" />. Since Digest authentication verifies that both parties to
   a communication know a shared secret, a password, without having to
   send that secret in the clear, Digest authentication avoids the
   security problems inherent in Basic authentication while providing a
   level of authentication which is useful in a wide range of scenarios.
</t>
</section>

<section title="Denial of Service">
<t>
   Denial of service attacks are of special concern to WebDAV servers.
   WebDAV plus HTTP enables denial of service attacks on every part of a
   system's resources.
</t><t>
   The underlying storage can be attacked by PUTting extremely large
   files.
</t><t>
   Asking for recursive operations on large collections can attack
   processing time.
</t><t>
   Making multiple pipelined requests on multiple connections can attack
   network connections.
</t><t>
   WebDAV servers need to be aware of the possibility of a denial of
   service attack at all levels.
</t>
</section>

<section title="Security through Obscurity">
<t>
   WebDAV provides, through the PROPFIND method, a mechanism for listing
   the member resources of a collection.  This greatly diminishes the
   effectiveness of security or privacy techniques that rely only on the
   difficulty of discovering the names of network resources.  Users of
   WebDAV servers are encouraged to use access control techniques to
   prevent unwanted access to resources, rather than depending on the
   relative obscurity of their resource names.
</t>
</section>

<section title="Privacy Issues Connected to Locks">
<t>
   When submitting a lock request a user agent may also submit an owner
   XML field giving contact information for the person taking out the
   lock (for those cases where a person, rather than a robot, is taking
   out the lock). This contact information is stored in a lockdiscovery
   property on the resource, and can be used by other collaborators to
   begin negotiation over access to the resource.  However, in many
   cases this contact information can be very private, and should not be
   widely disseminated.  Servers &SHOULD; limit read access to the
   lockdiscovery property as appropriate.  Furthermore, user agents
   &SHOULD; provide control over whether contact information is sent at
   all, and if contact information is sent, control over exactly what
   information is sent.
</t>
</section>

<section title="Privacy Issues Connected to Properties">
<t>
   Since property values are typically used to hold information such as
   the author of a document, there is the possibility that privacy
   concerns could arise stemming from widespread access to a resource's
   property data.  To reduce the risk of inadvertent release of private
   information via properties, servers are encouraged to develop access
   control mechanisms that separate read access to the resource body and
   read access to the resource's properties.  This allows a user to
   control the dissemination of their property data without overly
   restricting access to the resource's contents.
</t>
</section>

<section title="Reduction of Security due to Source Link">
<t>
   HTTP/1.1 warns against providing read access to script code because
   it may contain sensitive information.  Yet WebDAV, via its source
   link facility, can potentially provide a URI for script resources so
   they may be authored.  For HTTP/1.1, a server could reasonably
   prevent access to source resources due to the predominance of read-only
   access.  WebDAV, with its emphasis on authoring, encourages read
   and write access to source resources, and provides the source link
   facility to identify the source.  This reduces the security benefits
   of eliminating access to source resources.  Users and administrators
   of WebDAV servers should be very cautious when allowing remote
   authoring of scripts, limiting read and write access to the source
   resources to authorized principals.
</t>
</section>

<section title="Implications of XML External Entities">
<t>
   XML supports a facility known as "external entities", defined in
   section <xref target="REC-XML" x:fmt="number" x:sec="4.2.2" x:rel="#sec-external-ent"/> of <xref target="REC-XML" />, which instruct an XML processor to
   retrieve and perform an inline include of XML located at a particular
   URI. An external XML entity can be used to append or modify the
   document type declaration (DTD) associated with an XML document.  An
   external XML entity can also be used to include XML within the
   content of an XML document.  For non-validating XML, such as the XML
   used in this specification, including an external XML entity is not
   required by <xref target="REC-XML" />. However, <xref target="REC-XML" /> does state that an XML
   processor may, at its discretion, include the external XML entity.
</t><t>
   External XML entities have no inherent trustworthiness and are
   subject to all the attacks that are endemic to any HTTP GET request.
   Furthermore, it is possible for an external XML entity to modify the
   DTD, and hence affect the final form of an XML document, in the worst
   case significantly modifying its semantics, or exposing the XML
   processor to the security risks discussed in <xref target="RFC2376" />.  Therefore,
   implementers must be aware that external XML entities should be
   treated as untrustworthy.
</t><t>
   There is also the scalability risk that would accompany a widely
   deployed application which made use of external XML entities.  In
   this situation, it is possible that there would be significant
   numbers of requests for one external XML entity, potentially
   overloading any server which fields requests for the resource
   containing the external XML entity.
</t>
</section>

<section title="Risks Connected with Lock Tokens" anchor="risks.connected.with.lock.tokens">
<t>
   This specification, in <xref target="opaquelocktoken.lock.token.uri.scheme"/>, requires the use of Universal
   Unique Identifiers (UUIDs) for lock tokens, in order to guarantee
   their uniqueness across space and time.  UUIDs, as defined in <xref target="ISO-11578" />,
   contain a "node" field which "consists of the IEEE address,
   usually the host address.  For systems with multiple IEEE 802 nodes,
   any available node address can be used."  Since a WebDAV server will
   issue many locks over its lifetime, the implication is that it will
   also be publicly exposing its IEEE 802 address.
</t><t>
   There are several risks associated with exposure of IEEE 802
   addresses.  Using the IEEE 802 address:
</t>
<t><list style="symbols">
   <t>It is possible to track the movement of hardware from subnet to
   subnet.</t>

   <t>It may be possible to identify the manufacturer of the hardware
   running a WebDAV server.</t>

   <t>It may be possible to determine the number of each type of computer
   running WebDAV.</t>
</list></t>
<t>
   <xref target="node.field.generation.without.the.ieee.802.address"/> of this specification details an alternate mechanism
   for generating the "node" field of a UUID without using an IEEE 802
   address, which alleviates the risks associated with exposure of IEEE
   802 addresses by using an alternate source of uniqueness.
</t>
</section>
</section>

<section title="IANA Considerations">
<t>
   This document defines two namespaces, the namespace of property
   names, and the namespace of WebDAV-specific XML elements used within
   property values.
   URIs are used for both names, for several reasons. Assignment of a
   URI does not require a request to a central naming authority, and
   hence allow WebDAV property names and XML elements to be quickly
   defined by any WebDAV user or application.  URIs also provide a
   unique address space, ensuring that the distributed users of WebDAV
   will not have collisions among the property names and XML elements
   they create.
</t><t>
   This specification defines a distinguished set of property names and
   XML elements that are understood by all WebDAV applications.  The
   property names and XML elements in this specification are all derived
   from the base URI DAV: by adding a suffix to this URI, for example,
   DAV:creationdate for the "creationdate" property.
</t><t>
   This specification also defines a URI scheme for the encoding of lock
   tokens, the opaquelocktoken URI scheme described in <xref target="opaquelocktoken.lock.token.uri.scheme"/>.
</t><t>
   To ensure correct interoperation based on this specification, IANA
   must reserve the URI namespaces starting with "DAV:" and with
   "opaquelocktoken:" for use by this specification, its revisions, and
   related WebDAV specifications.
</t>
</section>

<section title="Intellectual Property">
<t>
   The following notice is copied from RFC 2026 <xref target="RFC2026" />, section <xref target="RFC2026" x:fmt="number" x:sec="10.4"/>,
   and describes the position of the IETF concerning intellectual
   property claims made against this document.
</t><t>
   The IETF takes no position regarding the validity or scope of any
   intellectual property or other rights that might be claimed to
   pertain to the implementation or use other technology described in
   this document or the extent to which any license under such rights
   might or might not be available; neither does it represent that it
   has made any effort to identify any such rights.  Information on the
   IETF's procedures with respect to rights in standards-track and
   standards-related documentation can be found in BCP-11.  Copies of
   claims of rights made available for publication and any assurances of
   licenses to be made available, or the result of an attempt made to
   obtain a general license or permission for the use of such
   proprietary rights by implementors or users of this specification can
   be obtained from the IETF Secretariat.
</t><t>
   The IETF invites any interested party to bring to its attention any
   copyrights, patents or patent applications, or other proprietary
   rights which may cover technology that may be required to practice
   this standard.  Please address the information to the IETF Executive
   Director.
</t>
</section>
   
<section title="Acknowledgements">
<t>
   A specification such as this thrives on piercing critical review and
   withers from apathetic neglect.  The authors gratefully acknowledge
   the contributions of the following people, whose insights were so
   valuable at every stage of our work.
</t><t>
   Terry Allen, Harald Alvestrand, Jim Amsden, Becky Anderson, Alan
   Babich, Sanford Barr, Dylan Barrell, Bernard Chester, Tim Berners-Lee,
   Dan Connolly, Jim Cunningham, Ron Daniel, Jr., Jim Davis, Keith
   Dawson, Mark Day, Brian Deen, Martin Duerst, David Durand, Lee
   Farrell, Chuck Fay, Wesley Felter, Roy Fielding, Mark Fisher, Alan
   Freier, George Florentine, Jim Gettys, Phill Hallam-Baker, Dennis
   Hamilton, Steve Henning, Mead Himelstein, Alex Hopmann, Andre van der
   Hoek, Ben Laurie, Paul Leach, Ora Lassila, Karen MacArthur, Steven
   Martin, Larry Masinter, Michael Mealling, Keith Moore, Thomas Narten,
   Henrik Nielsen, Kenji Ota, Bob Parker, Glenn Peterson, Jon Radoff,
   Saveen Reddy, Henry Sanders, Christopher Seiwald, Judith Slein, Mike
   Spreitzer, Einar Stefferud, Greg Stein, Ralph Swick, Kenji Takahashi,
   Richard N. Taylor, Robert Thau, John Turner, Sankar Virdhagriswaran,
   Fabio Vitali, Gregory Woodhouse, and Lauren Wood.
</t><t>
   Two from this list deserve special mention.  The contributions by
   Larry Masinter have been invaluable, both in helping the formation of
   the working group and in patiently coaching the authors along the
   way.  In so many ways he has set high standards we have toiled to
   meet. The contributions of Judith Slein in clarifying the
   requirements, and in patiently reviewing draft after draft, both
   improved this specification and expanded our minds on document
   management.
</t><t>
   We would also like to thank John Turner for developing the XML DTD.
</t>
</section>

</middle>



<back>
  <references title="Normative References">

    <reference anchor='RFC1766'>
      <front>
        <title>Tags for the Identification of Languages</title>
        <author initials='H.T.' surname='Alvestrand' fullname='Harald Tveit Alvestrand'>
          <organization>UNINETT</organization>
          <address>
            <email>Harald.T.Alvestrand@uninett.no</email>
          </address>
        </author>
        <date month='March' year='1995' />
      </front>
      <seriesInfo name='RFC' value='1766' />
    </reference>

    <reference anchor='RFC2277'>
      <front>
        <title abbrev='Charset Policy'>IETF Policy on Character Sets and Languages</title>
        <author initials='H.T.' surname='Alvestrand' fullname='Harald Tveit Alvestrand'>
          <organization>UNINETT</organization>
          <address>
            <email>Harald.T.Alvestrand@uninett.no</email>
          </address>
        </author>
        <date month='January' year='1998' />
      </front>
      <seriesInfo name='BCP' value='18' />
      <seriesInfo name='RFC' value='2277' />
    </reference>

    <reference anchor='RFC2119'>
      <front>
        <title abbrev='RFC Key Words'>Key words for use in RFCs to Indicate Requirement Levels</title>
        <author initials='S.' surname='Bradner' fullname='Scott Bradner'>
          <organization>Harvard University</organization>
          <address>
            <email>sob@harvard.edu</email>
          </address>
        </author>
        <date month='March' year='1997'></date>
      </front>
      <seriesInfo name='BCP' value='14' />
      <seriesInfo name='RFC' value='2119' />
    </reference>

    <reference anchor='RFC2396'>
      <front>
        <title abbrev='URI Generic Syntax'>Uniform Resource Identifiers (URI): Generic Syntax</title>
        <author initials='T.' surname='Berners-Lee' fullname='Tim Berners-Lee'>
          <organization>World Wide Web Consortium</organization>
          <address>
            <email>timbl@w3.org</email>
          </address>
        </author>
        <author initials='R.T.' surname='Fielding' fullname='Roy T. Fielding'>
          <organization>Department of Information and Computer Science</organization>
          <address>
            <email>fielding@ics.uci.edu</email>
          </address>
        </author>
        <author initials='L.' surname='Masinter' fullname='Larry Masinter'>
          <organization>Xerox PARC</organization>
          <address>
            <email>masinter@parc.xerox.com</email>
          </address>
        </author>
        <date month='August' year='1998'/>
      </front>  
      <seriesInfo name='RFC' value='2396' />
    </reference>

    <reference anchor="REC-XML" target="http://www.w3.org/TR/1998/REC-xml-19980210">
      <front>
        <title>Extensible Markup Language (XML) 1.0</title>
        <author initials="T." surname="Bray">
        	<organization>Textuality</organization>
          <address>
            <email>tbray@textuality.com</email>
          </address>
        </author>
        <author initials="J." surname="Paoli">
        	<organization>Microsoft</organization>
          <address>
            <email>jeanpa@microsoft.com</email>
          </address>
        </author>
        <author initials="C.M." surname="Sperberg-McQueen">
        	<organization>University of Illinois at Chicago</organization>
          <address>
            <email>cmsmcq@uic.edu</email>
          </address>
        </author>
        <date month="February" year="1998" />
      </front>
      <seriesInfo name="W3C" value="REC-xml-19980210" />
    </reference>
  
    <reference anchor="REC-XML-NAMES" target="http://www.w3.org/TR/1999/REC-xml-names-19990114">
      <front>
        <title>Namespaces in XML</title>
        <author initials="T." surname="Bray">
        	<organization>Textuality</organization>
          <address>
            <email>tbray@textuality.com</email>
          </address>
        </author>
        <author initials="D." surname="Hollander">
        	<organization>Hewlett-Packard Company</organization>
          <address>
            <email>dmh@corp.hp.com</email>
          </address>
        </author>
        <author initials="A." surname="Layman">
        	<organization>Microsoft</organization>
          <address>
            <email>andrewl@microsoft.com</email>
          </address>
        </author>
        <date month="January" year="1999" />
      </front>
      <seriesInfo name="W3C" value="REC-xml-names-19990114" />
    </reference>

    <reference anchor='RFC2069'>
      <front>
      <title>An Extension to HTTP : Digest Access Authentication</title>
        <author initials='J.' surname='Franks' fullname='J. Franks'>
          <organization>Northwestern University</organization>
          <address>
            <email>john@math.nwu.edu</email>
          </address>
        </author>
        <author initials='P.' surname='Hallam-Baker' fullname='P. Hallam-Baker'>
          <organization>CERN</organization>
          <address>
            <email>hallam@w3.org</email>
          </address>
        </author>
        <author initials='J.' surname='Hostetler' fullname='J. Hostetler'>
          <organization>Spyglass, Inc.</organization>
          <address>
            <email>jeff@spyglass.com</email>
          </address>
        </author>
        <author initials='P.' surname='Leach' fullname='P. Leach'>
          <organization>Microsoft Corporation</organization>
          <address>
            <email>paulle@microsoft.com</email>
          </address>
        </author>
        <author initials='A.' surname='Luotonen' fullname='A. Luotonen'>
          <organization>Netscape Communications Corporation</organization>
          <address>
            <email>luotonen@netscape.com</email>
          </address>
        </author>
        <author initials='E.' surname='Sink' fullname='E. Sink'>
          <organization>Spyglass, Inc.</organization>
          <address>
            <email>eric@spyglass.com</email>
          </address>
        </author>
        <author initials='L.' surname='Stewart' fullname='L. Stewart'>
          <organization>Open Market, Inc.</organization>
          <address>
            <email>stewart@OpenMarket.com</email>
          </address>
        </author>
        <date month='January' year='1997'></date>
      </front>
      <seriesInfo name='RFC' value='2069' />
    </reference>
  
    <reference anchor='RFC2068'>
      <front>
        <title>Hypertext Transfer Protocol -- HTTP/1.1</title>
        <author initials='R.' surname='Fielding' fullname='R. Fielding'>
          <organization>University of California</organization>
          <address>
            <email>fielding@ics.uci.edu</email>
          </address>
        </author>
        <author initials='J.' surname='Gettys' fullname='J. Gettys'>
          <organization>MIT Laboratory for Computer Science</organization>
          <address>
            <email>jg@w3.org</email>
          </address>
        </author>
        <author initials='J.' surname='Mogul' fullname='J. Mogul'>
          <organization>Digital Equipment Corporation</organization>
          <address>
            <email>mogul@wrl.dec.com</email>
          </address>
        </author>
        <author initials='H.' surname='Frystyk' fullname='H. Frystyk'>
          <organization>W3 Consortium</organization>
          <address>
            <email>frystyk@w3.org</email>
          </address>
        </author>
        <author initials='T.' surname='Berners-Lee' fullname='T. Berners-Lee'>
          <organization>W3 Consortium</organization>
          <address>
            <email>timbl@w3.org</email>
          </address>
        </author>
        <date month='January' year='1997'/>
      </front>
      <seriesInfo name='RFC' value='2068'/>
    </reference>
  
    <reference anchor="ISO-639">
      <front>
        <title abbrev="ISO 639">ISO 639:1988. Code for the representation of names of languages.</title>
        <author>
          <organization>International Organization for Standardization</organization>
          <address>
            <uri>http://www.iso.ch</uri>
          </address>
        </author>
        <date year="1988"/>
      </front>
    </reference>

    <reference anchor="ISO-8601">
      <front>
        <title abbrev="ISO 8601">ISO 8601, Data elements and interchange formats-Information
        interchange--Representation of dates and times</title>
        <author>
          <organization>International Organization for Standardization</organization>
          <address>
            <uri>http://www.iso.ch</uri>
          </address>
        </author>
        <date month="June" year="1988"/>
      </front>
    </reference>

    <reference anchor="ISO-11578">
      <front>
        <title abbrev="ISO 11578">ISO/IEC 11578:1996. Information technology - Open
        Systems Interconnection - Remote Procedure Call
        (RPC)</title>
        <author>
          <organization>International Organization for Standardization</organization>
          <address>
            <uri>http://www.iso.ch</uri>
          </address>
        </author>
        <date year="1996"/>
      </front>
    </reference>

    <reference anchor='RFC2141'>
      <front>
        <title>URN Syntax</title>
        <author initials='R.' surname='Moats' fullname='Ryan Moats'>
          <organization>AT&amp;T</organization>
          <address>
            <email>jayhawk@ds.internic.net</email>
          </address>
        </author>
        <date month='May' year='1997'/>
      </front>
      <seriesInfo name='RFC' value='2141' />
    </reference>

    <reference anchor='UTF-8'>
      <front>
        <title>UTF-8, a transformation format of ISO 10646</title>
        <author initials='F.' surname='Yergeau' fullname='F. Yergeau'>
          <organization>Alis Technologies</organization>
          <address>
            <email>fyergeau@alis.com</email>
          </address>
        </author>
        <date month='January' year='1998'/>
      </front>
      <seriesInfo name='RFC' value='2279' />
    </reference>

  </references>
   
  <references title="Informational References">

    <reference anchor='RFC2026'>
      <front>
        <title>The Internet Standards Process -- Revision 3</title>
        <author initials='S.' surname='Bradner' fullname='S. Bradner'>
          <organization>Harvard University</organization>
          <address>
            <email>sob@harvard.edu</email>
          </address>
        </author>
        <date month='October' year='1996'/>
      </front>
      <seriesInfo name='BCP' value='9' />
      <seriesInfo name='RFC' value='2026' />
    </reference>

    <reference anchor='RFC1807'>
      <front>
        <title>A Format for Bibliographic Records</title>
        <author initials='R.' surname='Lasher' fullname='R. Lasher'>
          <organization>Stanford University</organization>
          <address>
            <email>rlasher@forsythe.stanford.edu</email>
          </address>
        </author>
        <author initials='D.' surname='Cohen' fullname='D. Cohen'>
          <organization>Myricom</organization>
          <address>
            <email>Cohen@myri.com</email>
          </address>
        </author>
        <date month='June' year='1995'/>
      </front>
      <seriesInfo name='RFC' value='1807' />
    </reference>

    <reference anchor="WF" target="http://www.dlib.org/dlib/july96/lagoze/07lagoze.html">
      <front>
        <title>The Warwick Framework: A Container Architecture for Diverse Sets of Metadata</title>
        <author initials="C." surname="Lagoze">
          <organization>Digital Library Research Group, Cornell University</organization>
          <address>
            <email>lagoze@cs.cornell.edu</email>
          </address>
        </author>
        <date year="1996" month="July"/>
      </front>
      <annotation>D-Lib Magazine, July/August 1996.</annotation>
    </reference>              

    <reference anchor="USMARC">
      <front>
        <title>USMARC Format for Bibliographic Data</title>
        <author>
          <organization>Network Development and MARC Standards, Office, Washington DC:
          Cataloging Distribution Service, Library of Congress.</organization>
        </author>
        <date year="1994"/>
      </front>
    </reference>              

    <reference anchor="REC-PICS" target="http://www.w3.org/pub/WWW/TR/REC-PICS-labels-961031.html">
      <front>
        <title>PICS Label Distribution Label Syntax and Communication Protocols, Version 1.1</title>
        <author initials="J." surname="Miller" fullname="J. Miller">
          <organization abbrev="W3C">World Wide Web Consortium</organization>
          <address>
            <email>jmiller@w3.org</email>
            <uri>http://www.w3c.org</uri>
          </address>
        </author>
        <author initials="T." surname="Krauskopf" fullname="T. Krauskopf">
          <organization />
          <address>
            <email>timk@spyglass.com</email>
          </address>
        </author>
        <author initials="P." surname="Resnick" fullname="P. Resnick">
          <organization />
          <address>
            <email>presnick@research.att.com</email>
          </address>
        </author>
        <author initials="W." surname="Treese" fullname="W. Treese">
          <organization />
          <address>
            <email>treese@OpenMarket.com</email>
          </address>
        </author>
        <date month="October" year="1996" />
      </front>
      <seriesInfo name="W3C" value="REC-PICS-labels-961031" />
    </reference>

    <reference anchor='RFC2291'>
      <front>
        <title abbrev='Web DAV'>Requirements for a Distributed Authoring and Versioning Protocol for the World Wide Web</title>
        <author initials='J.' surname='Slein' fullname='Judith Slein'>
          <organization>Xerox Corporation</organization>
          <address>
            <email>slein@wrc.xerox.com</email>
          </address>
        </author>
        <author initials='F.' surname='Vitali' fullname='Fabio Vitali'>
          <organization>University of Bologna</organization>
          <address>
            <email>fabio@cs.unibo.it</email>
          </address>
        </author>
        <author initials='E.J.' surname='Whitehead' fullname='E. James Whitehead, Jr.'>
          <organization>University of California</organization>
          <address>
            <email>ejw@ics.uci.edu</email>
          </address>
        </author>
        <author initials='D.G.' surname='Durand' fullname='David G. Durand'>
          <organization>Boston University</organization>
          <address>
            <email>dgd@cs.bu.edu</email>
          </address>
        </author>
        <date month='February' year='1998'/>
      </front>
      <seriesInfo name='RFC' value='2291' />
    </reference>

    <reference anchor='RFC2413'>
      <front>
        <title>Dublin Core Metadata for Resource Discovery</title>
        <author initials='S.L.' surname='Weibel' fullname='Stuart L. Weibel'>
          <organization>OCLC Online Computer Library Center, Inc., Office of Research</organization>
          <address>
            <email>weibel@oclc.org</email>
          </address>
        </author>
        <author initials='J.A.' surname='Kunze' fullname='John A. Kunze'>
          <organization>University of California, San Francisco, Center for Knowledge Management</organization>
          <address>
            <email>jak@ckm.ucsf.edu</email>
          </address>
        </author>
        <author initials='C.' surname='Lagoze' fullname='Carl Lagoze'>
          <organization>Cornell University, University Library and Department of Computer Science</organization>
          <address>
            <email>lagoze@cs.cornell.edu</email>
          </address>
        </author>
        <author initials='M.' surname='Wolf' fullname='Misha Wolf'>
          <organization>Reuters Limited</organization>
          <address>
            <email>misha.wolf@reuters.com</email>
          </address>
        </author>
        <date month='September' year='1998'></date>
      </front>
      <seriesInfo name='RFC' value='2413' />
    </reference>

    <reference anchor='RFC2376'>
      <front>
        <title>XML Media Types</title>
        <author initials='E.J.' surname='Whitehead' fullname='E. James Whitehead, Jr.'>
          <organization>Dept. of Information and Computer Science</organization>
          <address>
            <email>ejw@ics.uci.edu</email>
          </address>
        </author>
        <author initials='M.' surname='Makoto' fullname='Murata Makoto'>
          <organization>Fuji Xerox Information Systems</organization>
          <address>
            <email>murata@fxis.fujixerox.co.jp</email>
          </address>
        </author>
        <date month='July' year='1998'/>
      </front>
      <seriesInfo name='RFC' value='2376' />
    </reference>

  </references>

<section title="Appendices" x:fixed-section-number="23">
<section title="Appendix 1 - WebDAV Document Type Definition">
<t>
   This section provides a document type definition, following the rules
   in <xref target="REC-XML" />, for the XML elements used in the protocol stream and in
   the values of properties. It collects the element definitions given
   in sections <xref target="xml.element.definitions" format="counter"/> and <xref target="dav.properties" format="counter"/>.
</t>
<figure><artwork type="application/xml-dtd">
   &lt;!DOCTYPE webdav-1.0 [

   &lt;!--============ XML Elements from <xref target="xml.element.definitions"/> ==================-->

   &lt;!ELEMENT <x:ref>activelock</x:ref> (<x:ref>lockscope</x:ref>, <x:ref>locktype</x:ref>, <x:ref>depth</x:ref>, <x:ref>owner</x:ref>?, <x:ref>timeout</x:ref>?,
   <x:ref>locktoken</x:ref>?) >

   &lt;!ELEMENT <x:ref>lockentry</x:ref> (<x:ref>lockscope</x:ref>, <x:ref>locktype</x:ref>) >
   &lt;!ELEMENT <x:ref>lockinfo</x:ref> (<x:ref>lockscope</x:ref>, <x:ref>locktype</x:ref>, <x:ref>owner</x:ref>?) >

   &lt;!ELEMENT <x:ref>locktype</x:ref> (<x:ref>write</x:ref>) >
   &lt;!ELEMENT <x:ref>write</x:ref> EMPTY >

   &lt;!ELEMENT <x:ref>lockscope</x:ref> (<x:ref>exclusive</x:ref> | <x:ref>shared</x:ref>) >
   &lt;!ELEMENT <x:ref>exclusive</x:ref> EMPTY >
   &lt;!ELEMENT <x:ref>shared</x:ref> EMPTY >

   &lt;!ELEMENT <x:ref>depth</x:ref> (#PCDATA) >

   &lt;!ELEMENT <x:ref>owner</x:ref> ANY >

   &lt;!ELEMENT <x:ref>timeout</x:ref> (#PCDATA) >

   &lt;!ELEMENT <x:ref>locktoken</x:ref> (<x:ref>href</x:ref>+) >

   &lt;!ELEMENT <x:ref>href</x:ref> (#PCDATA) >

   &lt;!ELEMENT <x:ref>link</x:ref> (<x:ref>src</x:ref>+, <x:ref>dst</x:ref>+) >
   &lt;!ELEMENT <x:ref>dst</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>src</x:ref> (#PCDATA) >

   &lt;!ELEMENT <x:ref>multistatus</x:ref> (<x:ref>response</x:ref>+, <x:ref>responsedescription</x:ref>?) >

   &lt;!ELEMENT <x:ref>response</x:ref> (<x:ref>href</x:ref>, ((<x:ref>href</x:ref>*, <x:ref>status</x:ref>)|(<x:ref>propstat</x:ref>+)),
   <x:ref>responsedescription</x:ref>?) >
   &lt;!ELEMENT <x:ref>status</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>propstat</x:ref> (<x:ref>prop</x:ref>, <x:ref>status</x:ref>, <x:ref>responsedescription</x:ref>?) >
   &lt;!ELEMENT <x:ref>responsedescription</x:ref> (#PCDATA) >

   &lt;!ELEMENT <x:ref>prop</x:ref> ANY >
   
   &lt;!ELEMENT <x:ref>propertybehavior</x:ref> (<x:ref>omit</x:ref> | <x:ref>keepalive</x:ref>) >
   &lt;!ELEMENT <x:ref>omit</x:ref> EMPTY >

   &lt;!ELEMENT <x:ref>keepalive</x:ref> (#PCDATA | <x:ref>href</x:ref>+) >

   &lt;!ELEMENT <x:ref>propertyupdate</x:ref> (<x:ref>remove</x:ref> | <x:ref>set</x:ref>)+ >
   &lt;!ELEMENT <x:ref>remove</x:ref> (<x:ref>prop</x:ref>) >
   &lt;!ELEMENT <x:ref>set</x:ref> (<x:ref>prop</x:ref>) >

   &lt;!ELEMENT <x:ref>propfind</x:ref> (<x:ref>allprop</x:ref> | <x:ref>propname</x:ref> | <x:ref>prop</x:ref>) >
   &lt;!ELEMENT <x:ref>allprop</x:ref> EMPTY >
   &lt;!ELEMENT <x:ref>propname</x:ref> EMPTY >

   &lt;!ELEMENT <x:ref>collection</x:ref> EMPTY >

   &lt;!--=========== Property Elements from <xref target="dav.properties"/> ===============-->
   &lt;!ELEMENT <x:ref>creationdate</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>displayname</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>getcontentlanguage</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>getcontentlength</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>getcontenttype</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>getetag</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>getlastmodified</x:ref> (#PCDATA) >
   &lt;!ELEMENT <x:ref>lockdiscovery</x:ref> (<x:ref>activelock</x:ref>)* >
   &lt;!ELEMENT <x:ref>resourcetype</x:ref> ANY >
   &lt;!ELEMENT <x:ref>source</x:ref> (<x:ref>link</x:ref>)* >
   &lt;!ELEMENT <x:ref>supportedlock</x:ref> (<x:ref>lockentry</x:ref>)* >
   ]>
</artwork></figure>
</section>

<section title="Appendix 2 - ISO 8601 Date and Time Profile" anchor="iso.8601.date.and.time.profile">
<t>
   The creationdate property specifies the use of the ISO 8601 date
   format <xref target="ISO-8601" />.  This section defines a profile of the ISO 8601
   date format for use with this specification.  This profile is quoted
   from an Internet-Draft by Chris Newman, and is mentioned here to
   properly attribute his work.
</t>
<figure><artwork type="abnf2616"><![CDATA[
   date-time       = full-date "T" full-time

   full-date       = date-fullyear "-" date-month "-" date-mday
   full-time       = partial-time time-offset

   date-fullyear   = 4DIGIT
   date-month      = 2DIGIT  ; 01-12
   date-mday       = 2DIGIT  ; 01-28, 01-29, 01-30, 01-31 based on
   month/year
   time-hour       = 2DIGIT  ; 00-23
   time-minute     = 2DIGIT  ; 00-59
   time-second     = 2DIGIT  ; 00-59, 00-60 based on leap second rules
   time-secfrac    = "." 1*DIGIT
   time-numoffset  = ("+" / "-") time-hour ":" time-minute
   time-offset     = "Z" / time-numoffset

   partial-time    = time-hour ":" time-minute ":" time-second
                    [time-secfrac]
]]></artwork></figure>
<t>
   Numeric offsets are calculated as local time minus UTC (Coordinated
   Universal Time).  So the equivalent time in UTC can be determined by
   subtracting the offset from the local time.  For example, 18:50:00-04:00
   is the same time as 22:58:00Z.
</t>
<t>
   If the time in UTC is known, but the offset to local time is unknown,
   this can be represented with an offset of "-00:00".  This differs
   from an offset of "Z" which implies that UTC is the preferred
   reference point for the specified time.
</t>
</section>


<section title="Appendix 3 - Notes on Processing XML Elements">

<section title="Notes on Empty XML Elements">
<t>
   XML supports two mechanisms for indicating that an XML element does
   not have any content.  The first is to declare an XML element of the
   form &lt;A>&lt;/A>.  The second is to declare an XML element of the form
   &lt;A/>.  The two XML elements are semantically identical.
</t>
<t>
   It is a violation of the XML specification to use the &lt;A>&lt;/A> form if
   the associated DTD declares the element to be EMPTY (e.g., &lt;!ELEMENT
   A EMPTY>).  If such a statement is included, then the empty element
   format, &lt;A/> must be used.  If the element is not declared to be
   EMPTY, then either form &lt;A>&lt;/A> or &lt;A/> may be used for empty
   elements.
</t>
</section>

<section title="Notes on Illegal XML Processing">
<t>
   XML is a flexible data format that makes it easy to submit data that
   appears legal but in fact is not.  The philosophy of "Be flexible in
   what you accept and strict in what you send" still applies, but it
   must not be applied inappropriately.  XML is extremely flexible in
   dealing with issues of white space, element ordering, inserting new
   elements, etc.  This flexibility does not require extension,
   especially not in the area of the meaning of elements.
</t>
<t>
   There is no kindness in accepting illegal combinations of XML
   elements.  At best it will cause an unwanted result and at worst it
   can cause real damage.
</t>

<section title="Example - XML Syntax Error">
<t>
   The following request body for a PROPFIND method is illegal.
</t>
<figure><artwork type="example"><![CDATA[
   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D="DAV:">
     <D:allprop/>
     <D:propname/>
   </D:propfind>
]]></artwork></figure>
<t>
   The definition of the propfind element only allows for the allprop or
   the propname element, not both.  Thus the above is an error and must
   be responded to with a 400 (Bad Request).
</t>
<t>
   Imagine, however, that a server wanted to be "kind" and decided to
   pick the allprop element as the true element and respond to it.  A
   client running over a bandwidth limited line who intended to execute
   a propname would be in for a big surprise if the server treated the
   command as an allprop.
</t>
<t>
   Additionally, if a server were lenient and decided to reply to this
   request, the results would vary randomly from server to server, with
   some servers executing the allprop directive, and others executing
   the propname directive. This reduces interoperability rather than
   increasing it.
</t>
</section>

<section title="Example - Unknown XML Element">
<t>
   The previous example was illegal because it contained two elements
   that were explicitly banned from appearing together in the propfind
   element.  However, XML is an extensible language, so one can imagine
   new elements being defined for use with propfind.  Below is the
   request body of a PROPFIND and, like the previous example, must be
   rejected with a 400 (Bad Request) by a server that does not
   understand the expired-props element.
</t>
<figure><artwork type="example"><![CDATA[
   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D="DAV:"
   xmlns:E="http://www.foo.bar/standards/props/">
     <E:expired-props/>
   </D:propfind>
]]></artwork></figure>
<t>
   To understand why a 400 (Bad Request) is returned let us look at the
   request body as the server unfamiliar with expired-props sees it.
</t>
<figure><artwork type="example"><![CDATA[
   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D="DAV:"
               xmlns:E="http://www.foo.bar/standards/props/">
   </D:propfind>
]]></artwork></figure>
<t>
   As the server does not understand the expired-props element,
   according to the WebDAV-specific XML processing rules specified in
   <xref target="instructions.for.processing.xml.in.dav"/>, it must ignore it.  Thus the server sees an empty
   propfind, which by the definition of the propfind element is illegal.
</t>
<t>
   Please note that had the extension been additive it would not
   necessarily have resulted in a 400 (Bad Request).  For example,
   imagine the following request body for a PROPFIND:
</t>
<figure><artwork type="example"><![CDATA[
   <?xml version="1.0" encoding="utf-8" ?>
   <D:propfind xmlns:D="DAV:"
               xmlns:E="http://www.foo.bar/standards/props/">
     <D:propname/>
     <E:leave-out>*boss*</E:leave-out>
   </D:propfind>
]]></artwork></figure>
<t>
   The previous example contains the fictitious element leave-out. Its
   purpose is to prevent the return of any property whose name matches
   the submitted pattern.  If the previous example were submitted to a
   server unfamiliar with leave-out, the only result would be that the
   leave-out element would be ignored and a propname would be executed.
</t>
</section>
</section>
</section>

<section title="Appendix 4 -- XML Namespaces for WebDAV" anchor="xml.namespaces.for.webdav">

<section title="Introduction">
<t>
   All DAV compliant systems &MUST; support the XML namespace extensions
   as specified in <xref target="REC-XML-NAMES" />.
</t>
</section>

<section title="Meaning of Qualified Names">
<t>
   [Note to the reader: This section does not appear in <xref target="REC-XML-NAMES" />,
   but is necessary to avoid ambiguity for WebDAV XML processors.]
</t>
<t>
   WebDAV compliant XML processors &MUST; interpret a qualified name as a
   URI constructed by appending the LocalPart to the namespace name URI.
</t>
<figure><preamble>Example</preamble><artwork type="example"><![CDATA[
   <del:glider xmlns:del="http://www.del.jensen.org/">
     <del:glidername>
          Johnny Updraft
     </del:glidername>
     <del:glideraccidents/>
   </del:glider>
]]></artwork></figure>
<t>
   In this example, the qualified element name "del:glider" is
   interpreted as the URL "http://www.del.jensen.org/glider".
</t>
<figure><artwork type="example"><![CDATA[
   <bar:glider xmlns:del="http://www.del.jensen.org/">
     <bar:glidername>
          Johnny Updraft
     </bar:glidername>
     <bar:glideraccidents/>
   </bar:glider>
]]></artwork></figure>
<t>
   Even though this example is syntactically different from the previous
   example, it is semantically identical.  Each instance of the
   namespace name "bar" is replaced with "http://www.del.jensen.org/"
   and then appended to the local name for each element tag.  The
   resulting tag names in this example are exactly the same as for the
   previous example.
</t>
<figure><artwork type="example"><![CDATA[
   <foo:r xmlns:foo="http://www.del.jensen.org/glide">
     <foo:rname>
          Johnny Updraft
     </foo:rname>
     <foo:raccidents/>
   </foo:r>
]]></artwork></figure>
<t>
   This example is semantically identical to the two previous ones.
   Each instance of the namespace name "foo" is replaced with
   "http://www.del.jensen.org/glide" which is then appended to the local
   name for each element tag, the resulting tag names are identical to
   those in the previous examples.
</t>
</section>
</section>
</section>


    </back>
</rfc>
