> Does anyone know how to get Content-Range returned as a header response when > the request has "Range: bytes= " in it? > I added <cfheader name=Accept-Ranges" value="bytes"> but do not get the >Content-Range back.
CF, like most application servers in my experience, will not honor things like this - request headers that control behavior, HTTP verbs that control behavior, etc. It's up to the developer to do this. You would have to read the range in the request, and generate a response to serve just that range, and return the appropriate headers, etc, yourself. A common example of this that I run into all the time is the use of Last-Modified in HTTP responses, and support for If-Modified-Since HTTP request headers. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsit ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349305 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

