Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Perhaps you should add sample code to clarify your point. I don't see how SSL is causing any of this issue. – Grumpy Dec 6 '12 at 6:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.