SharePoint 2010 / IIS 7.5 Byte-Range Request Responds With Entire File

旧城冷巷雨未停 提交于 2019-12-05 19:51:58

The problem is that SharePoint caching is off be default, and needs to be turned on to enable byte-range requests. See Disk-Based Caching for Binary Large Objects.

Note http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.2:

"A server MAY ignore the Range header."

Thus whenever you are using a Range header you must be able to handle a 200 response. The fact that your server doesn't appear to support range serving is unfortunate, but conformant.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!