PROPPATCH

Metode HTTP

Spesifikasi metode HTTP PROPPATCH

pekerjaan yang sedang berlangsung
Metode HTTP PROPPATCH telah ditentukan dalam bagian 9.2 dari dokumen RFC 4918 oleh Internet Engineering Task Force (IETF) dan World Wide Web Consortium (W3C).

Deskripsi metode PROPPATCH

pekerjaan yang sedang berlangsung

Contoh untuk metode HTTP PROPPATCH

Request header:
PROPPATCH /data HTTP/1.1
Host: api.example.com
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)Chrome/58.0.3029.110 Safari/537
Content-Type: text/xml; charset="utf-8"
Content-Length: 900
Depth: 0
Request body (XML):
<?xml version="1.0" encoding="utf-8"?>
<D:propertyupdate xmlns:D="DAV:">
<D:set>
<D:prop>
<D:author>New Author</D:author>
</D:prop>
</D:set>
</D:propertyupdate>
Response header:
HTTP/1.1 207 Multi-Status
Content-Type: text/xml; charset="utf-8"
Content-Length: [Länge des XML-Antwortinhalts]
Date: Mon, 31 July 2023 14:58:12 GMT
Server: Apache/2.4.7 (Ubuntu)
Response body (XML):
<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:">
[Response details here]
</D:multistatus>