Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions content.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ Typical use cases:
- A desktop file manager shows contents of a WebDAV collection and wants to be notified on updates in order to refresh the view.
- A calendar Web app shows a CalDAV collection and wants to be notified on updates in order to refresh the view.

[^todo]: TO BE DONE


## Notational Conventions

Expand Down Expand Up @@ -284,6 +282,11 @@ A server MUST NOT register a subscription with the same identifier multiple time

The response is the same as for subscription registration.

**Note:** Both registering and updating a subscription use the same POST request to the WebDAV resource. The server distinguishes between these two operations by checking whether the push resource is already registered for that resource. Therefore, when a client needs to change a subscription's push resource, it cannot update the existing subscription because that would require changing the identifier itself. Instead:

- the old subscription for the old push resource has to be removed, and then
- a new subscription for the new push resource has to be created.


## Subscription Removal

Expand Down
Loading