2.2.5.3 Multiple Property Elements

[RFC4918] section 9.2 defines the message syntax for setting properties by using the PROPPATCH method. A property or group of properties for a resource MAY be enclosed within a single <d:prop></d:prop> element,<7> as shown in the following example.

 PROPPATCH /[resource] HTTP/1.1
 Host: www.example.com
 Content-type: text/xml; charset="utf-8"
 Content-Length: nnn
 <?xml version="1.0" encoding="utf-8" ?>
 <d:propertyupdate xmlns:d='DAV:'>
   <d:set>
     <d:prop>
       <d:owner>Owner's Name</d:owner>
     </d:prop>
 </d:set>
 </d:propertyupdate>