I have an application that works correct when it is http , now I need to make it secure by changing it to https.
when I change it I get a problem with an iFrame that is in use to show files. This problem only happens in IE ,the text files are not showing nice , and the mails (msg files) are not downloading , so it shows the msg content (including file headers , metadata ...) but it will not show the msg attachments .
when I looked at the differences on the browsers I can see that in IE the Iframe have an empy head element, but chrom will have style element in that head :
how can I make the Iframe open files in ssl mode just like it open them without ssl (on http) ?
here is my code :
<ice:form id="filePriviewForm" >
<div align="center" title="file priview" >
<iframe src="#{byBean.aFilePathForPriview}"
style="width: 1000px; height: 1400px" id="myIframe" name="myIframe" />
</div>
when the page is loading the iframe src file is located in a folder inside the WebContent of the project .
if the file is .msg : Chrome will download it , IE in https mode will open it content inside the iframe , IE in http mode will download it
if the file is .txt : chrome will keep it appearance , IE will not , it will ignore the end line .
if the file is .doc IE & chrome will download it correctly.
Any help would be great Thanks Tami