1

I have installed ITHIT webdav server engine. I tried using CalDev and Class1 server engine instances.

However, I was not successful with enabling content-range header.

When I am sending PUT with content-range header includes, the IIS server is responding with 501 not implemented.

Kindly help in resolving content-range header issue.

Deduplicator
  • 44,692
  • 7
  • 66
  • 118
Anjana Rao
  • 11
  • 2

1 Answers1

0

Typically CalDAV clients do not send PUT with Content-Range. The sample CalDAV implementation, generated by CalDAV/CardDAV Web Application wizard for Visual Studio does not implement resumable upload.

If you really need resumable upload in CalDAV/CardDAV server, you can modify the IContent.Write method implementation. This method provides necessary parameters to process segmented uploads. By default you can find the Write method in CalendarFile.cs file.

IT Hit WebDAV
  • 5,652
  • 12
  • 61
  • 98