Falls jemand seinen CalDAV-Server testen möchte und beim Aufruf calendar-query mit dem Filter time-range arbeiten möchte, hier ein Beispiel:
REPORT /calendars/johndoe/home/ HTTP/1.1
Depth: 1
Prefer: return-minimal
Content-Type: application/xml; charset=utf-8
<c:calendar-query xmlns:d="DAV:" xmlns:c="urn:ietf:params:xml:ns:caldav">
<d:prop>
<d:getetag />
<c:calendar-data />
</d:prop>
<c:filter>
<c:comp-filter name="VCALENDAR">
<c:comp-filter name="VEVENT">
<c:time-range start="20160321T140000" end="20160322T140000"/>
</c:comp-filter>
</c:comp-filter>
</c:filter>
</c:calendar-query>