We are having an interesting problem with some dynamic content. We are generating dynamic files (XLS and ZIP) and sending them to the browser using CFCONTENT.
This works fine under normal conditions, but fails when we turn on SSL. With SSL turned on, I get a browser popup with the following error:
Anyone have any ideas of what we've done wrong or what security settings we need to tweak?
Thanks.
Code:
<CFHEADER NAME="Content-Disposition" VALUE="attachment;filename=#defaultFile#">
<cfcontent file="#actualFilename#" deletefile="Yes" type="application/x-zip-compressed">
This works fine under normal conditions, but fails when we turn on SSL. With SSL turned on, I get a browser popup with the following error:
Code:
Internet Explorer cannot download "last half of the URL" from "servername".
Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later.
Anyone have any ideas of what we've done wrong or what security settings we need to tweak?
Thanks.