1

我已经安装了 ITHIT webdav 服务器引擎。我尝试使用 CalDev 和 Class1 服务器引擎实例。

但是,我没有成功启用内容范围标头。

当我发送包含内容范围标头的 PUT 时,IIS 服务器响应 501 未实现。

请帮助解决内容范围标题问题。

4

1 回答 1

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.

于 2015-03-03T22:20:55.440 回答