<?xml version="1.0" encoding="US-ASCII"?>
<?xml-stylesheet type="text/xsl" href="../rfc2629.xslt"?>
<!DOCTYPE rfc SYSTEM 'rfc2629.dtd' [
  <!ENTITY rfc2119 PUBLIC '' 'bibxml/reference.RFC.2119.xml'>
  <!ENTITY rfc2616 PUBLIC '' 'bibxml/reference.RFC.2616.xml'>
  <!ENTITY rfc3253 PUBLIC '' 'bibxml/reference.RFC.3253.xml'>
  <!ENTITY rfc3744 PUBLIC '' 'bibxml/reference.RFC.3744.xml'>
  <!ENTITY rfc4791 PUBLIC '' 'bibxml/reference.RFC.4791.xml'>
  <!ENTITY rfc4918 PUBLIC '' 'bibxml/reference.RFC.4918.xml'>
  <!ENTITY rfc5323 PUBLIC '' 'bibxml/reference.RFC.5323.xml'>
  <!ENTITY rfc5842 PUBLIC '' 'bibxml/reference.RFC.5842.xml'>
  <!ENTITY rfc6352 PUBLIC '' 'bibxml/reference.RFC.6352.xml'>
  <!ENTITY W3C.REC-xml-20081126 SYSTEM 'bibxml4/reference.W3C.REC-xml-20081126.xml'>
]>

<?rfc rfcedstyle="yes" ?>
<?rfc toc="yes"?>
<?rfc tocdepth="4"?><!-- default = 3 -->
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>

<rfc number="6578" category="std" ipr='pre5378Trust200902'
  submissionType="IETF" consensus="yes">
  <front>
    <title abbrev="WebDAV Sync">Collection Synchronization for&nbsp;Web&nbsp;Distributed&nbsp;Authoring&nbsp;and&nbsp;Versioning&nbsp;(WebDAV)</title>
    <author initials="C." surname="Daboo" fullname="Cyrus Daboo">
    <organization abbrev="Apple Inc.">Apple Inc.</organization>
    <address>
      <postal>
        <street>1 Infinite Loop</street>
        <city>Cupertino</city>
        <region>CA</region>
        <code>95014</code>
        <country>USA</country>
      </postal>
      <email>cyrus@daboo.name</email>
      <uri>http://www.apple.com/</uri>
    </address>
    </author>
    <author initials="A." surname="Quillaud" fullname="Arnaud Quillaud">
    <organization abbrev="Oracle">Oracle Corporation</organization>
    <address>
      <postal>
        <street>180, Avenue de l'Europe</street>
        <city>Saint Ismier cedex</city>
        <code>38334</code>
        <country>France</country>
      </postal>
      <email>arnaud.quillaud@oracle.com</email>
      <uri>http://www.oracle.com/</uri>
    </address>
    </author>
    <date month="March" year="2012" />
    <area>
      Applications
    </area>

<keyword>sync-collection</keyword>
<keyword>sync-token</keyword>

    <abstract>
      <t>
        This specification defines an extension to Web Distributed Authoring and Versioning (WebDAV) that allows efficient synchronization of the contents of a WebDAV collection.
      </t>
    </abstract>
  </front>
  <middle>
    <section title='Introduction'>
      <t>
        <xref target="RFC4918">WebDAV</xref> defines the concept of
        'collections', which are hierarchical groupings of WebDAV
        resources on an <xref target="RFC2616">HTTP</xref>
        server. Collections can be of arbitrary size and depth (i.e.,
        collections within collections). WebDAV clients that cache
        resource content need a way to synchronize that data with the
        server (i.e., detect what has changed and update their
        cache). Currently, this can be done using a WebDAV PROPFIND request on a collection to list all members of a collection along with their DAV:getetag property values, which allows the client to determine which were changed, added, or deleted. However, this does not scale well to large collections, as the XML response to the PROPFIND request will grow with the collection size.
      </t>
      <t>
        This specification defines a new WebDAV report that results in the server returning to the client only information about those member URLs that were added or deleted, or whose mapped resources were changed, since a previous execution of the report on the collection.
      </t>
      <t>
        Additionally, a new property is added to collection resources that is used to convey a "synchronization token" that is guaranteed to change when the collection's member URLs or their mapped resources have changed.
      </t>
    </section>
    <section title='Conventions Used in This Document'>
      <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 <xref target='RFC2119' />.
      </t>
      <t>
        This document uses XML DTD fragments
        (<xref target="W3C.REC-xml-20081126"/>, Section 3.2) as a
        purely notational convention.  WebDAV request and response
        bodies cannot be validated by a DTD due to the specific
        extensibility rules defined in Section 17 of <xref target="RFC4918"/> and due to the fact that all XML elements defined by this specification use the XML namespace name "DAV:".  In particular:
        <list style='numbers'>
            <t>Element names use the "DAV:" namespace.</t>
            <t>Element ordering is irrelevant unless explicitly stated otherwise.</t>
            <t>Extension elements (elements not already defined as valid child elements) may be added anywhere, except when explicitly stated otherwise.</t>
            <t>Extension attributes (attributes not already defined as valid for this element) may be added anywhere, except when explicitly stated otherwise.</t>
        </list>
      </t>
      <t>
        When an XML element type in the "DAV:" namespace is referenced in this document outside of the context of an XML fragment, the string "DAV:" will be prefixed to the element type.
      </t>
      <t>
        This document inherits, and sometimes extends, DTD productions
        from Section 14 of <xref target="RFC4918"/>.
      </t>
    </section>
    <section title='WebDAV Synchronization' anchor='sync-collection'>
      <section title='Overview'>
        <t>
		  One way to synchronize data between two entities is to use some form of synchronization token. The token defines the state of the data being synchronized at a particular point in time. It can then be used to determine what has changed between one point in time and another.
        </t>
        <t>
          This specification defines a new WebDAV report that is used to enable client-server collection synchronization based on such a token.
        </t>
        <t>
		  In order to synchronize the contents of a collection between a server and client, the server provides the client with a synchronization token each time the synchronization report is executed. That token represents the state of the data being synchronized at that point in time. The client can then present that same token back to the server at some later time, and the server will return only those items that are new, have changed, or were deleted since that token was generated. The server also returns a new token representing the new state at the time the report was run.
        </t>
        <t>
		  Typically, the first time a client connects to the server it will need to be informed of the entire state of the collection (i.e., a full list of all member URLs that are currently in the collection). That is done by the client sending an empty token value to the server. This indicates to the server that a full listing is required.
        </t>
        <t>
		  As an alternative, the client might choose to do its first synchronization using some other mechanism on the collection (e.g., some other form of batch resource information retrieval such as PROPFIND, <xref target="RFC5323">SEARCH</xref>, or specialized REPORTs such as those defined in <xref target="RFC4791">CalDAV</xref> and <xref target="RFC6352">CardDAV</xref>) and ask for the DAV:sync-token property to be returned. This property (defined in <xref target="sync_property" />) contains the same token that can be used later to issue a DAV:sync-collection report.
        </t>
        <t>
		  In some cases, a server might only wish to maintain a limited amount of history about changes to a collection. In that situation, it will return an error to the client when the client presents a token that is "out of date". At that point, the client has to fall back to synchronizing the entire collection by re-running the report request using an empty token value.
        </t>
        <t>
          Typically, a client will use the synchronization report to
          retrieve the list of changes and will follow that with
          requests to retrieve the content of changed resources. It is
          possible that additional changes to the collection could
          occur between the time of the synchronization report and
          resource content retrieval, which could result in an
          inconsistent view of the collection. When clients use this
          method of synchronization, they need to be aware that such
          additional changes could occur and track them, e.g., by
          differences between the ETag values returned in the
          synchronization report and those returned when actually
          fetching resource content, by using conditional requests as
          described in <xref target="if_header"/>, or by repeating the synchronization process until no changes are returned.
        </t>
      </section>
      <section title='DAV:sync-collection Report'>
        <t>
		  If the DAV:sync-collection report is implemented by
		  a WebDAV server, then the server MUST list the
		  report in the "DAV:supported-report-set" property on
		  any collection that supports synchronization.
        </t>
        <t>
		  To implement the behavior for this report, a server
		  needs to keep track of changes to any member URLs
		  and their mapped resources in a collection (as
		  defined in Section 3 of
		  <xref target="RFC4918"/>). This includes noting the
		  addition of new member URLs, the changes to the
		  mapped resources of existing member URLs, and the
		  removal of member URLs. The server will track each
		  change and provide a synchronization "token" to the
		  client that describes the state of the server at a
		  specific point in time. This "token" is returned as
		  part of the response to the "sync-collection"
		  report. Clients include the last token they got from
		  the server in the next "sync-collection" report that
		  they execute, and the server provides the changes
		  from the previous state (represented by the token)
		  to the current state (represented by the new token returned).
        </t>
        <t>
          The synchronization token itself MUST be treated as an
          "opaque" string by the client, i.e., the actual string data has no specific meaning or syntax. However, the token MUST be a valid URI to allow its use in an If precondition request header (see <xref target="if_header"/>).
          For example, a simple implementation of such a token could be a numeric counter that counts each change as it occurs and relates that change to the specific object that changed. The numeric value could be appended to a "base" URI to form the valid sync-token.
        </t>
        <t>
          Marshalling:
          <list>
            <t>
              The request-URI MUST identify a collection. The request body MUST be a DAV:sync-collection XML element (see
              <xref target="sync_collection_element" />), which MUST contain one DAV:sync-token XML element, one DAV:sync-level element, and one DAV:prop XML element, and MAY contain a DAV:limit XML element.
            </t>
            <t>
			  This report is only defined when the Depth header has value "0"; other values result in a 400 (Bad Request) error response.  Note that <xref target="RFC3253"/>, Section 3.6, states that if the Depth header is not present, it defaults to a value of "0".
            </t>

            <t>
              The response body for a successful request MUST be a DAV:&wj;multistatus XML element, which MUST contain one DAV:&wj;sync&nbhy;token
              element in addition to one DAV:response element for each member URL that was added,
              has had its mapped resource changed, or was deleted since the last synchronization operation as specified by the DAV:sync-token provided in the request.
              A given member URL MUST appear only once in the response. In the case where multiple member URLs of the request-URI are mapped to the same resource, if the resource is changed, each member URL MUST be returned in the response.
            </t>
            <t>
              The content of each DAV:response element differs depending on how the member was altered:
              <list>
                <t>
                  For members that have changed (i.e., are new or have
                  had their mapped resource modified), the DAV:response MUST contain at least one
                  DAV:propstat element and MUST NOT contain any DAV:&wj;status element.
                </t>
                <t>
                  For members that have been removed, the DAV:response MUST contain one DAV:status with a value set to '404 Not Found'
                  and MUST NOT contain any DAV:propstat element.
                </t>
                <t>
                  For members that are collections and are unable to support the DAV:sync-collection report, the DAV:response MUST contain one DAV:status with a value set to '403 Forbidden', a DAV:error containing DAV:supported-report or DAV:sync-traversal-supported (see <xref target="depth"/> for which is appropriate) and MUST NOT contain any DAV:propstat element.
                </t>
              </list>
            </t>
            <t>
                The conditions under which each type of change can occur are further described in <xref target="change-types" />.
            </t>
          </list>
        </t>
        <t>
          Preconditions:
          <list>
            <t>
				(DAV:valid-sync-token): The DAV:sync-token element value MUST be a valid token previously returned by the server for the collection targeted by the request-URI. Servers might need to invalidate tokens previously returned to clients. Doing so will cause the clients to fall back to doing full synchronization using the report, though that will not require clients to download resources that are already cached and have not changed. Even so, servers MUST limit themselves to invalidating tokens only when absolutely necessary. Specific reasons include:
				<list style="symbols">
				  <t>Servers might be unable to maintain all of the change data for a collection due to storage or performance reasons, e.g., servers might only be able to maintain up to 3 weeks worth of changes to a collection, or only up to 10,000 total changes, or not wish to maintain changes for a deleted collection.</t>
				  <t>Change to server implementation: servers might be upgraded to a new implementation that tracks the history in a different manner, and thus previous synchronization history is no longer valid.</t>
				</list>
            </t>
          </list>
        </t>
        <t>
          Postconditions:
          <list>
            <t>
				(DAV:number-of-matches-within-limits): The number of changes reported in the response must fall within the client-specified limit. This condition might be triggered if a client requests a limit on the number of responses (as per <xref target="limits"/>), but the server is unable to truncate the result set at or below that limit. 
            </t>
          </list>
        </t>
      </section>
      <section title="Depth Behavior" anchor="depth">
          <t>
              Servers MUST support only Depth:0 behavior with the
              DAV:&wj;sync&nbhy;collection report, i.e., the report
              targets only the collection being synchronized in a
              single request. However, clients do need to "scope" the
              synchronization to different levels within that
              collection -- specifically, immediate children (level "1") and all children at any depth (level "infinite"). To specify which level to use, clients MUST include a DAV:sync-level XML element in the request.
              <list style='symbols'>
              	<t>When the client specifies the DAV:sync-level XML element with a value of "1", only appropriate internal member URLs (immediate children) of the collection specified as the request-URI are reported.</t>
              	<t>When the client specifies the DAV:sync-level XML element with a value of "infinite", all appropriate member URLs of the collection specified as the request-URI are reported, provided child collections themselves also support the DAV:sync-collection report.</t>
              	<t>DAV:sync-token values returned by the server are not specific to the value of the DAV:sync-level XML element used in the request. As such, clients MAY use a DAV:sync-token value from a request with one DAV:sync-level XML element value for a similar request with a different DAV:sync-level XML element value; however, the utility of this is limited.</t>
              </list>
          </t>
          <t>
          	Note that when a server supports a DAV:sync-level XML element with a value of "infinite", it might not be possible to synchronize some child collections within the collection targeted by the report. When this occurs, the server MUST include a DAV:response element for the child collection with status 403 (Forbidden). The 403 response MUST be sent once, when the collection is first reported to the client. In addition, the server MUST include a DAV:error element in the DAV:&wj;response element, indicating one of two possible causes for this:
          	<list>
          		<t>
          			The DAV:sync-collection report is not supported at all on the child collection. The DAV:error element MUST contain the DAV:&wj;supported-report element.
          		</t>
          		<t>
          			The server is unwilling to report results for the child collection when a DAV:sync-collection report with the DAV:sync-level XML element set to "infinite" is executed on a parent resource. This might happen when, for example, the synchronization state of the collection resource is controlled by another subsystem. In such cases clients can perform the DAV:sync-collection report directly on the child collection instead. The DAV:error element MUST contain the DAV:sync-traversal-supported element.
          		</t>
          	</list>
          </t>
      </section>
      <section title="Types of Changes Reported on Initial Synchronization">
          <t>
			When the DAV:sync-collection request contains
			an empty DAV:sync-token element, the server
			MUST return all member URLs of the collection
			(taking account of the DAV:sync-level XML
			element value as per <xref target="depth"/>,
			and optional truncation of the result set as per <xref target="limit"/>) and it MUST NOT return any removed member URLs. All types of member (collection or non-collection) MUST be reported.
          </t>
      </section>
      <section title="Types of Changes Reported on Subsequent Synchronizations" anchor='change-types'>
          <t>
              When the DAV:sync-collection request contains a valid value for the DAV:sync-token element, two types
              of member URL state changes can be returned (changed or removed).
              This section defines what triggers each of these to be returned. It also clarifies the case where a member URL
              might have undergone multiple changes between two
              synchronization report requests. In all cases, the
              DAV:sync-level XML element value (as per
              <xref target="depth"/>) and optional truncation of the
              result set (as per <xref target="limit"/>) are taken into account by the server.
          </t>
          <section title="Changed Member">
              <t>
                A member URL MUST be reported as changed if it has been newly mapped as a member of the target collection since the request sync-token was generated (e.g., when a new resource has been created as a child of the collection).
                For example, this includes member URLs that have been newly mapped as the result of a COPY, MOVE, <xref target="RFC5842">BIND</xref>, or <xref target="RFC5842">REBIND</xref> request. All types of member URL (collection or non-collection) MUST be reported.
              </t>
              <t>
                In the case where a mapping between a member URL and the target collection was removed,
                then a new mapping with the same URI was created, the member URL MUST be reported as changed and MUST NOT be reported as removed.
              </t>
              <t>
                A member URL MUST be reported as changed if its mapped resource's entity tag value (defined in Section 3.11 of <xref target="RFC2616"/>) has changed since the request sync-token was  generated.
              </t>
              <t>
                A member URL MAY be reported as changed if the user issuing the request was granted access to this member URL, due to access control changes.
              </t>
              <t>
                  Collection member URLs MUST be returned as changed
                  if they are mapped to an underlying resource (i.e.,
                  entity body) and if the entity tag associated with
                  that resource changes. There is no guarantee that
                  changes to members of a collection will result in a
                  change in any entity tag of that collection, so
                  clients cannot rely on a series of reports using the
                  DAV:sync-level XML element value set to "1" at
                  multiple levels to track all changes within a
                  collection. Instead, a DAV:sync-level XML element with a value of "infinite" has to be used.
              </t>
          </section>
          <section title="Removed Member">
              <t>
                  A member MUST be reported as removed if its mapping under the target collection has been removed
                  since the request sync-token was generated, and it has not been remapped since it was removed.  For example, this
                  includes members that have been unmapped as the result of a MOVE, <xref target="RFC5842">UNBIND</xref>, or <xref target="RFC5842">REBIND</xref> operation.
                  This also includes collection members that have been removed, including ones that themselves do not support the DAV:sync-collection report.
              </t>
              <t>
                  If a member was added (and its mapped resource possibly modified), then removed between two synchronization report requests,
                  it MUST be reported as removed. This ensures that a client that adds a member is informed of the removal of the member, if the removal occurs before the client has had a chance to execute a synchronization report.
              </t>
              <t>
                  A member MAY be reported as removed if the user issuing the request no longer has access to this member,
                  due to access control changes.
              </t>
              <t>
              	For a report with the DAV:sync-level XML element value set to "infinite", where a collection is removed, the server MUST NOT report the removal of any members of the removed collection. Clients MUST assume that if a collection is reported as being removed, then all members of that collection have also been removed.
              </t>
          </section>
      </section>
      <section title="Truncation of Results" anchor="limit">
          <t>
              A server MAY limit the number of member URLs in a
              response, for example, to limit the amount of work
              expended in processing a request, or as the result of an
              explicit limit set by the client. If the result set is
              truncated, the response MUST use status code 207 (Multi-Status), return a DAV:multistatus response body, and indicate a status of 507 (Insufficient Storage) for the request-URI. That DAV:response element SHOULD include a DAV:error element with the DAV:&wj;number-of-matches-within-limits precondition, as defined in <xref target="RFC3744"/> (Section 9.2). DAV:response elements for all the changes being reported are also included.
          </t>
          <t>
              When truncation occurs, the DAV:sync-token value returned in the response MUST represent the correct state for the partial set of changes returned. That allows the client to use the returned DAV:&wj;sync-token to fetch the next set of changes. In this way, the client can effectively "page" through the entire set of changes in a consistent manner.
          </t>
          <t>
              Clients MUST handle the 507 status on the request-URI in the response to the report.
          </t>
          <t>
              For example, consider a server that records changes using a strictly increasing integer to represent a "revision number" and uses that quantity as the DAV:sync-token value (appropriately encoded as a URI). Assume the last DAV:sync-token used by the client was "http://example.com/sync/10", and since then 15 additional changes to different resources have occurred. If the client executes a DAV:&wj;sync-collection request with a DAV:sync-token of "http://example.com/sync/10", without a limit, the server would return 15 DAV:response elements and a DAV:sync-token with value "http://example.com/sync/25". But if the server chooses to limit responses to at most 10 changes, then it would return only 10 DAV:&wj;response elements and a DAV:sync-token with value "http://example.com/sync/20", together with an additional DAV:&wj;response element for the request-URI with a status code of 507. Subsequently, the client can reissue the request with the DAV:sync-token value returned from the server and fetch the remaining 5 changes.
          </t>
      </section>
      <section title="Limiting Results" anchor="limits">
          <t>
              A client can limit the number of results returned by the server through use of the DAV:limit element (<xref target="RFC5323"/>, Section 5.17) in the request body. This is useful when clients have limited space or bandwidth for the results. If a server is unable to truncate the result at or below the requested number, then it MUST fail the request with a DAV:number-of-matches-within-limits postcondition error. When the results can be correctly limited by the server, the server MUST follow the rules above for indicating a result set truncation to the client.
          </t>
      </section>                  
      <section title="Example: Initial DAV:sync-collection Report">
        <t>
          In this example, the client is making its first synchronization request to the server, so the DAV:sync-token element in
          the request is empty. It also asks for the DAV:getetag property and for a proprietary property.
          The server responds with the items currently in the targeted collection. The current synchronization token is also returned.
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
REPORT /home/cyrusdaboo/ HTTP/1.1
Host: webdav.example.com
Depth: 0
Content-Type: text/xml; charset="utf-8"
Content-Length: xxxx

<?xml version="1.0" encoding="utf-8" ?>
<D:sync-collection xmlns:D="DAV:">
  <D:sync-token/>
  <D:sync-level>1</D:sync-level>
  <D:prop xmlns:R="urn:ns.example.com:boxschema">
    <D:getetag/>
    <R:bigbox/>
  </D:prop>
</D:sync-collection>
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![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.example.com/home/cyrusdaboo/test.doc</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00001-abcd1"</D:getetag>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema">
          <R:BoxType>Box type A</R:BoxType>
        </R:bigbox>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href
>http://webdav.example.com/home/cyrusdaboo/vcard.vcf</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00002-abcd1"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
    <D:propstat>
      <D:prop>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema"/>
      </D:prop>
      <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href
>http://webdav.example.com/home/cyrusdaboo/calendar.ics</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00003-abcd1"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
    <D:propstat>
      <D:prop>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema"/>
      </D:prop>
      <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
  </D:response>
  <D:sync-token>http://example.com/ns/sync/1234</D:sync-token>
</D:multistatus>
]]>
          </artwork>
        </figure>
      </section>
      <section title="Example: DAV:sync-collection Report with Token">
        <t>
          In this example, the client is making a synchronization request to the server and is using the DAV:sync-token element returned
          from the last report it ran on this collection. The server responds, listing the items that have been added, changed, or removed. The
          (new) current synchronization token is also returned.
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
REPORT /home/cyrusdaboo/ HTTP/1.1
Host: webdav.example.com
Content-Type: text/xml; charset="utf-8"
Content-Length: xxxx

<?xml version="1.0" encoding="utf-8" ?>
<D:sync-collection xmlns:D="DAV:">
  <D:sync-token>http://example.com/ns/sync/1234</D:sync-token>
  <D:sync-level>1</D:sync-level>
  <D:prop xmlns:R="urn:ns.example.com:boxschema">
    <D:getetag/>
    <R:bigbox/>
  </D:prop>
</D:sync-collection>
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![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.example.com/home/cyrusdaboo/file.xml</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00004-abcd1"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
    <D:propstat>
      <D:prop>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema"/>
      </D:prop>
      <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href
>http://webdav.example.com/home/cyrusdaboo/vcard.vcf</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00002-abcd2"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
    <D:propstat>
      <D:prop>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema"/>
      </D:prop>
      <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href
>http://webdav.example.com/home/cyrusdaboo/test.doc</D:href>
    <D:status>HTTP/1.1 404 Not Found</D:status>
  </D:response>
  <D:sync-token>http://example.com/ns/sync/1238</D:sync-token>
</D:multistatus>
]]>
          </artwork>
        </figure>
      </section>
      <section title="Example: Initial DAV:sync-collection Report with Truncation">
        <t>
          In this example, the client is making its first synchronization request to the server, so the DAV:sync-token element in
          the request is empty. It also asks for the DAV:getetag property.
          The server responds with the items currently in the targeted collection but truncated at two items. The synchronization token for the truncated result set is returned.
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
REPORT /home/cyrusdaboo/ HTTP/1.1
Host: webdav.example.com
Depth: 0
Content-Type: text/xml; charset="utf-8"
Content-Length: xxxx

<?xml version="1.0" encoding="utf-8" ?>
<D:sync-collection xmlns:D="DAV:">
  <D:sync-token/>
  <D:sync-level>1</D:sync-level>
  <D:prop>
    <D:getetag/>
  </D:prop>
</D:sync-collection>
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![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.example.com/home/cyrusdaboo/test.doc</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00001-abcd1"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href
>http://webdav.example.com/home/cyrusdaboo/vcard.vcf</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00002-abcd1"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href
>http://webdav.example.com/home/cyrusdaboo/</D:href>
    <D:status>HTTP/1.1 507 Insufficient Storage</D:status>
    <D:error><D:number-of-matches-within-limits/></D:error>
  </D:response>
  <D:sync-token>http://example.com/ns/sync/1233</D:sync-token>
</D:multistatus>
]]>
          </artwork>
        </figure>
      </section>
      <section title="Example: Initial DAV:sync-collection Report with Limit">
        <t>
          In this example, the client is making its first synchronization request to the server, so the DAV:sync-token element in
          the request is empty. It requests a limit of 1 for the responses returned by the server. It also asks for the DAV:getetag property.
          The server responds with the items currently in the targeted collection, but truncated at one item. The synchronization token for the truncated result set is returned.
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
REPORT /home/cyrusdaboo/ HTTP/1.1
Host: webdav.example.com
Depth: 0
Content-Type: text/xml; charset="utf-8"
Content-Length: xxxx

<?xml version="1.0" encoding="utf-8" ?>
<D:sync-collection xmlns:D="DAV:">
  <D:sync-token/>
  <D:sync-level>1</D:sync-level>
  <D:limit>
    <D:nresults>1</D:nresults>
  </D:limit>
  <D:prop>
    <D:getetag/>
  </D:prop>
</D:sync-collection>
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![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.example.com/home/cyrusdaboo/test.doc</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00001-abcd1"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href
>http://webdav.example.com/home/cyrusdaboo/</D:href>
    <D:status>HTTP/1.1 507 Insufficient Storage</D:status>
    <D:error><D:number-of-matches-within-limits/></D:error>
  </D:response>
  <D:sync-token>http://example.com/ns/sync/1232</D:sync-token>
</D:multistatus>
]]>
          </artwork>
        </figure>
      </section>
      <section title="Example: DAV:sync-collection Report with Unsupported Limit">
        <t>
          In this example, the client is making a synchronization request to the server with a valid DAV:sync-token element value. It requests a limit of 100 for the responses returned by the server. It also asks for the DAV:getetag property.
          The server is unable to limit the results to the maximum specified by the client, so it responds with a 507 status code and appropriate postcondition error code.
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
REPORT /home/cyrusdaboo/ HTTP/1.1
Host: webdav.example.com
Depth: 0
Content-Type: text/xml; charset="utf-8"
Content-Length: xxxx

<?xml version="1.0" encoding="utf-8" ?>
<D:sync-collection xmlns:D="DAV:">
  <D:sync-token>http://example.com/ns/sync/1232</D:sync-token>
  <D:sync-level>1</D:sync-level>
  <D:limit>
    <D:nresults>100</D:nresults>
  </D:limit>
  <D:prop>
    <D:getetag/>
  </D:prop>
</D:sync-collection>
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
HTTP/1.1 507 Insufficient Storage
Content-Type: text/xml; charset="utf-8"
Content-Length: xxxx

<?xml version="1.0" encoding="utf-8" ?>
<D:error xmlns:D="DAV:">
  <D:number-of-matches-within-limits/>
</D:error>
]]>
          </artwork>
        </figure>
      </section>
      <section title="Example: DAV:sync-level Set to Infinite, Initial DAV:sync-collection Report">
        <t>
          In this example, the client is making its first synchronization request to the server, so the DAV:sync-token element in
          the request is empty, and it is using DAV:sync-level set to "infinite". It also asks for the DAV:getetag property and for a proprietary property.
          The server responds with the items currently in the targeted collection. The current synchronization token is also returned. 
        </t>
        <t>
          The collection /home/cyrusdaboo/collection1/ exists and has
 one child resource that is also reported. The collection
 /home/cyrusdaboo/collection2/ exists but has no child resources. The
 collection /home/cyrusdaboo/shared/ is returned with a 403 status
 indicating that a collection exists, but it is unable to report on
 changes within it in the scope of the current DAV:sync-level
 "infinite" report. Instead, the client can try a DAV:sync-collection report directly on the collection URI. 
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
REPORT /home/cyrusdaboo/ HTTP/1.1
Host: webdav.example.com
Depth: 0
Content-Type: text/xml; charset="utf-8"
Content-Length: xxxx

<?xml version="1.0" encoding="utf-8" ?>
<D:sync-collection xmlns:D="DAV:">
  <D:sync-token/>
  <D:sync-level>infinite</D:sync-level>
  <D:prop xmlns:R="urn:ns.example.com:boxschema">
    <D:getetag/>
    <R:bigbox/>
  </D:prop>
</D:sync-collection>
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![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>/home/cyrusdaboo/collection1/</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00001-abcd1"</D:getetag>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema">
          <R:BoxType>Box type A</R:BoxType>
        </R:bigbox>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href>/home/cyrusdaboo/collection1/test.doc</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00001-abcd1"</D:getetag>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema">
          <R:BoxType>Box type A</R:BoxType>
        </R:bigbox>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href>/home/cyrusdaboo/collection2/</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag/>
      </D:prop>
      <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
    <D:propstat>
      <D:prop>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema"/>
      </D:prop>
      <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href>/home/cyrusdaboo/calendar.ics</D:href>
    <D:propstat>
      <D:prop>
        <D:getetag>"00003-abcd1"</D:getetag>
      </D:prop>
      <D:status>HTTP/1.1 200 OK</D:status>
    </D:propstat>
    <D:propstat>
      <D:prop>
        <R:bigbox xmlns:R="urn:ns.example.com:boxschema"/>
      </D:prop>
      <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
  </D:response>
  <D:response>
    <D:href>/home/cyrusdaboo/shared/</D:href>
    <D:status>HTTP/1.1 403 Forbidden</D:status>
    <D:error><D:sync-traversal-supported/></D:error>
  </D:response>
  <D:sync-token>http://example.com/ns/sync/1234</D:sync-token>
</D:multistatus>
]]>
          </artwork>
        </figure>
      </section>
    </section>
    <section title="DAV:sync-token Property" anchor="sync_property">
        <t>
            <list style="hanging">
                <t hangText="Name:">
                    sync-token
                </t>
                <t hangText="Namespace:">
                    DAV:
                </t>
                <t hangText="Purpose:">
                  Contains the value of the synchronization token as it would be returned by a DAV:sync-collection report.
                </t>
                <t hangText="Value:">
                    Any valid URI.
                </t>
                <t hangText="Protected:">
                    MUST be protected because this value is created and controlled by the server.
                </t>
                <t hangText="COPY/MOVE behavior:">
                    This property value is dependent on the final state of the destination resource, not the value of the property on the source resource.
                </t>
                <t hangText="Description:">
                    The DAV:sync-token property MUST be defined on all resources that support the DAV:sync-collection report.
                    It contains the value of the synchronization token as it would be returned by a DAV:sync-collection report on that resource at the same point in time.
                    It SHOULD NOT be returned by a PROPFIND DAV:&wj;allprop request (as defined in Section 14.2 of <xref target="RFC4918" />).
                </t>
                <t hangText="Definition:">
                    <figure>
                        <artwork align="left">
<![CDATA[
<!ELEMENT sync-token #PCDATA>

<!-- Text MUST be a valid URI -->
]]>
                        </artwork>
                    </figure>
                </t>
            </list>
        </t>
    </section>
    <section title="DAV:sync-token Use with If Header" anchor="if_header">
        <t>
        	WebDAV provides an If precondition header that allows for "state tokens" to be used as preconditions on HTTP requests (as defined in Section 10.4 of <xref target="RFC4918" />). This specification allows the DAV:&wj;sync&nbhy;token value to be used as one such token in an If header. By using this, clients can ensure requests only complete when there have been no changes to the content of a collection, by virtue of an unchanged DAV:sync-token value. Servers MUST support use of DAV:&wj;sync-token values in If request headers.
        </t>
      <section title="Example: If Precondition with PUT">
        <t>
          In this example, the client has already used the DAV:sync-collection report to synchronize the collection /home/cyrusdaboo/collection/. Now it wants to add a new resource to the collection, but only if there have been no other changes since the last synchronization. Note that because the DAV:sync-token is defined on the collection and not on the resource targeted by the request, the If header value needs to use the "Resource_Tag" construct for the header syntax to correctly identify that the supplied state token refers to the collection resource.
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
PUT /home/cyrusdaboo/collection/newresource.txt HTTP/1.1
Host: webdav.example.com
If: </home/cyrusdaboo/collection/>
  (<http://example.com/ns/sync/12345>)
Content-Type: text/plain; charset="utf-8"
Content-Length: xxxx

Some content here...
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
HTTP/1.1 201 Created
]]>
          </artwork>
        </figure>
      </section>
      <section title="Example: If Precondition with MKCOL">
        <t>
          In this example, the client has already used the DAV:sync-collection report to synchronize the collection /home/cyrusdaboo/collection/. Now, it wants to add a new collection to the collection, but only if there have been no other changes since the last synchronization. Note that because the DAV:sync-token is defined on the collection and not on the resource targeted by the request, the If header value needs to use the "Resource_Tag" construct for the header syntax to correctly identify that the supplied state token refers to the collection resource. In this case, the request fails as another change has occurred to the collection corresponding to the supplied DAV:sync-token.
        </t>
        <figure>
          <preamble>
            &gt;&gt; Request &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
MKCOL /home/cyrusdaboo/collection/child/ HTTP/1.1
Host: webdav.example.com
If: </home/cyrusdaboo/collection/>
  (<http://example.com/ns/sync/12346>)
]]>
          </artwork>
        </figure>
        <figure>
          <preamble>
            &gt;&gt; Response &lt;&lt;
          </preamble>
          <artwork>
<![CDATA[
HTTP/1.1 412 Precondition Failed
]]>
          </artwork>
        </figure>
      </section>
    </section>
    <section title="XML Element Definitions">
      <section title="DAV:sync-collection XML Element" anchor="sync_collection_element">
        <t>
          <list style="hanging">
            <t hangText="Name:">
              sync-collection
            </t>
            <t hangText="Namespace:">
              DAV:
            </t>
            <t hangText="Purpose:">
              WebDAV report used to synchronize data between client and server.
            </t>
            <t hangText="Description:">
              See <xref target="sync-collection" />.
            </t>
          </list>
        </t>
        <figure>
          <artwork>
<![CDATA[
<!ELEMENT sync-collection (sync-token, sync-level, limit?, prop)>

<!-- DAV:limit defined in RFC 5323, Section 5.17 -->
<!-- DAV:prop defined in RFC 4918, Section 14.18 -->
]]>
          </artwork>
        </figure>
      </section>
      <section title="DAV:sync-token XML Element" anchor="sync_token_element">
          <t>
            <list style="hanging">
              <t hangText="Name:">
                sync-token
              </t>
              <t hangText="Namespace:">
                DAV:
              </t>
              <t hangText="Purpose:">
                The synchronization token provided by the server and returned by the client.
              </t>
              <t hangText="Description:">
                See <xref target="sync-collection" />.
              </t>
            </list>
          </t>
          <figure>
            <artwork>
<![CDATA[
<!ELEMENT sync-token CDATA>

<!-- Text MUST be a URI -->
]]>
            </artwork>
          </figure>
      </section>
      <section title="DAV:sync-level XML Element" anchor="sync_level_element">
          <t>
            <list style="hanging">
              <t hangText="Name:">
                sync-level
              </t>
              <t hangText="Namespace:">
                DAV:
              </t>
              <t hangText="Purpose:">
                Indicates the "scope" of the synchronization report request.
              </t>
              <t hangText="Description:">
                See <xref target="depth" />.
              </t>
            </list>
          </t>
          <figure>
            <artwork>
<![CDATA[
<!ELEMENT sync-level CDATA>

<!-- Text MUST be either "1" or "infinite" -->
]]>
            </artwork>
          </figure>
      </section>
      <section title="DAV:multistatus XML Element" anchor="multistatus_element">
          <t>
            <list style="hanging">
              <t hangText="Name:">
                multistatus
              </t>
              <t hangText="Namespace:">
                DAV:
              </t>
              <t hangText="Purpose:">
                Extends the DAV:multistatus element to include synchronization details.
              </t>
              <t hangText="Description:">
                See <xref target="sync-collection" />.
              </t>
            </list>
          </t>
          <figure>
            <artwork>
<![CDATA[
<!ELEMENT multistatus (response*, responsedescription?,
                       sync-token?) >

<!-- DAV:multistatus originally defined in RFC 4918, Section 14.16
     but overridden here to add the DAV:sync-token element -->
<!-- DAV:response defined in RFC 4918, Section 14.24 -->
<!-- DAV:responsedescription defined in RFC 4918, Section 14.25 -->
]]>
            </artwork>
          </figure>
      </section>
    </section>
    <section title='Security Considerations'>
      <t>
        This extension does not introduce any new security concerns beyond those already described in HTTP and WebDAV.
      </t>
    </section>

    <section title='Acknowledgments'>
      <t>
        The following individuals contributed their ideas and support for writing this specification: Bernard Desruisseaux, Werner Donne, Mike Douglass, Ciny Joy, Andrew McMillan, Julian Reschke, and Wilfredo Sanchez. We would like to thank the Calendaring and Scheduling Consortium for facilitating interoperability testing for early implementations of this specification.
      </t>
    </section>
  </middle>
  <back>

<?rfc rfcedstyle="no"?>
    <references title='Normative References'>
      &rfc2119;
      &rfc2616;
      &rfc3253;
      &rfc3744;
      &rfc4918;
      &rfc5323;

<reference anchor='W3C.REC-xml-20081126'
           target='http://www.w3.org/TR/2008/REC-xml-20081126'>
<front>
<title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>

<author initials='C.' surname='Sperberg-McQueen' fullname='C. M. Sperberg-McQueen'>
    <organization />
</author>

<author initials='F.' surname='Yergeau' fullname='Francois Yergeau'>
    <organization />
</author>

<author initials='J.' surname='Paoli' fullname='Jean Paoli'>
    <organization />
</author>

<author initials='E.' surname='Maler' fullname='Eve Maler'>
    <organization />
</author>

<author initials='T.' surname='Bray' fullname='Tim Bray'>
    <organization />
</author>

<date month='November' day='26' year='2008' />
</front>

<seriesInfo name='World Wide Web Consortium Recommendation' value='REC&nbhy;xml-20081126' />
<format type='HTML' target='http://www.w3.org/TR/2008/REC-xml-20081126' />
</reference>

    </references>
    <references title='Informative References'>
        &rfc4791;
        &rfc5842;
        &rfc6352;
    </references>
<?rfc rfcedstyle="yes"?>

<section title='Backwards-Compatible Handling of Depth'>
	<t>In prior draft versions of this specification, the Depth request header was used instead of the DAV:sync-level element to indicate the "scope" of the synchronization request. Servers that wish to be backwards compatible with clients conforming to the older specification should do the following: if a DAV:sync-level element is not present in the request body, use the Depth header value as the equivalent value for the missing DAV:sync-level element.
	</t>
</section>

<section title='Example of a Client Synchronization Approach'>
	<t>This appendix gives an example of how a client might accomplish collection synchronization using the WebDAV sync report defined in this specification. Note that this is provided purely as an example, and is not meant to be treated as a normative "algorithm" for client synchronization.</t>
	<t>This example assumes a WebDAV client interacting with a WebDAV server supporting the sync report. The client keeps a local cache of resources in a targeted collection, "/collection/". Local changes are assumed to not occur. The client is only tracking changes to the immediate children of the collection resource.</t>
	<t>
		<list>
			<t>** Initial State **</t>
			<t>The client starts out with an empty local cache.</t>
			<t>The client starts out with no DAV:sync-token stored for "/collection/".</t>
			<t>&nbsp;</t>
			<t>** Initial Synchronization **</t>
			<t>The client issues a sync report request to the server with an empty DAV:sync-token element, and DAV:sync-level set to "1". The request asks for the server to return the DAV:getetag WebDAV property for each resource it reports.</t>
			<t>The server returns a response containing the list of current resources (with their associated DAV:getetag properties) as well as a new DAV:sync-token value.</t>
			<t>The client associates the new DAV:sync-token value with the collection.</t>
			<t>For each reported resource, the client creates a set of (resource path, DAV:getetag) tuples.</t>
			<t>For each tuple, the client issues an HTTP GET request to the server to retrieve its content, and updates the  (resource path, DAV:getetag) entry in its local cache for that resource with the ETag response header value returned in the GET request.</t>
			<t>&nbsp;</t>
			<t>** Routine Synchronization **</t>
			<t>The client issues a sync report request to the server with the DAV:sync-token set to the current cached value from the last sync, and DAV:sync-level set to "1". The request asks for the server to return the DAV:getetag WebDAV property for each resource it reports.</t>
			<t>The server returns a response containing the list of changes as well as a new DAV:sync-token value.</t>
			<t>The client associates the new DAV:sync-token value with the collection.</t>
			<t>&nbsp;&nbsp;* Process Removed Resources *</t>
			<t>For each resource reported with a 404 response status, the client removes the corresponding resource from its local cache.</t>
			<t>&nbsp;&nbsp;* Process Resources *</t>
			<t>For each remaining reported resource, the client creates a new set of (resource path, DAV:getetag) tuples.</t>
			<t>The client then determines which resources are in the new set but not in the current cache, and which resources are in the new set and the current cache but have a different DAV:getetag value. For each of those, the client issues an HTTP GET request to the server to retrieve the resource content, and updates the  (resource path, DAV:getetag) entry in its local cache for that resource with the ETag response header value returned in the GET request.</t>
		</list>
	</t>
</section>


  </back>
</rfc>
