Coding Dojo with IE and SSL - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T13:16:20Zhttp://stackoverflow.com/feeds/question/59734http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl3Coding Dojo with IE and SSLesarjeant2008-09-12T18:44:44Z2009-01-08T18:23:58Z
<p>My application is using Dojo 1.1.1 on an SSL-only website. It is currently taking advantage of dijit.ProgressBar and a dijit.form.DateTextBox.</p>
<p>Everything works fabulous in Firefox 2&3, but as soon as I try the same scripts in IE7 the results are an annoying Security Information dialog:</p>
<blockquote>
<pre><code>This page contains both secure and nonsecure items.
Do you want to display the nonsecure items?
</code></pre>
</blockquote>
<p>I have scrutinized the page for any non-https reference to no avail. It appears to be something specific to dojo.js. There use to be an IFRAME glitch where the SRC was set to nothing, but this appears to be fixed now (on review of the source).</p>
<p>Anyone else having this problem? What are the best-practices for getting Dojo to play well with IE on an SSL-only webserver?</p>
http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl/60433#604330Answer by Till for Coding Dojo with IE and SSLTill2008-09-13T09:31:50Z2008-09-13T09:31:50Z<p>If your page is loading files from a non-https URL Firefox should tell you the same thing. Instead of an error the lock symbol at the bottom (in the status bar) should be crossed out. Are you sure that is not the case?</p>
<p>If you see the symbol, click on it and check which files are "unsecure".</p>
http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl/72805#728056Answer by esarjeant for Coding Dojo with IE and SSLesarjeant2008-09-16T14:19:24Z2008-09-16T19:31:13Z<p>After reviewing the JavaScript sourcecode for Dijit, I thought it was likely the error results from an "insecure" refrence to a dynamically generated IFRAME. Note there are two versions of the script file, the uncompressed represents the original source (dijit.js.uncompressed.js) and the standard (dijit.js) has been compressed for optimal transfer time. </p>
<p>Since the uncompressed version is the most readable, I will describe my solution based on that. At line #1023, an IFRAME is rendered in JavaScript:</p>
<pre><code>if(dojo.isIE){
var html="<iframe src='javascript:\"\"'"
+ " style='position: absolute; left: 0px; top: 0px;"
+ "z-index: -1; filter:Alpha(Opacity=\"0\");'>";
iframe = dojo.doc.createElement(html);
}else{...
</code></pre>
<p>What's the problem? IE doesn't know if the src for the IFRAME is "secure" - so I replaced it with the following:</p>
<pre><code>if(dojo.isIE){
var html="<iframe src='javascript:void(0);'"
+ " style='position: absolute; left: 0px; top: 0px;"
+ "z-index: -1; filter:Alpha(Opacity=\"0\");'>";
iframe = dojo.doc.createElement(html);
}else{...
</code></pre>
<p>This is the most common problem with JavaScript toolkits and SSL in IE. Since IFRAME's are used as shims due to poor overlay support for DIV's, this problem is extremely prevalent. </p>
<p>My first 5-10 page reloads are fine, but then the security error starts popping up again. How is this possible? The same page is "secure" for 5 reloads and then it is selected by IE as "insecure" when loaded the 6th time.</p>
<p>As it turns out, there is also a background image being set in the onload event for dijit.wai (line #1325). This reads something like this;</p>
<blockquote>
<p>div.style.cssText = 'border: 1px
solid;'
+ 'border-color:red green;'
+ 'position: absolute;'
+ 'height: 5px;'
+ 'top: -999px;'
+ 'background-image: url("' +
dojo.moduleUrl("dojo",
"resources/blank.gif") + '");';</p>
</blockquote>
<p>This won't work because the background-image tag doesn't include HTTPs. Despite the fact that the location is relative, IE7 doesn't know if it's secure so the warning is posed.</p>
<p>In this particular instance, this CSS is used to test for Accessibility (A11y) in Dojo. Since this is not something my application will support and since there are other general buggy issues with this method, I opted to remove everything in the onload() for dijit.wai.</p>
<p>All is good! No sporadic security problems with the page loads.</p>
http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl/341399#3413990Answer by Gaston for Coding Dojo with IE and SSLGaston2008-12-04T17:19:16Z2008-12-04T17:19:16Z<p>Thanks man, you have saved my head over here!</p>
http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl/425303#4253030Answer by Apps for Coding Dojo with IE and SSLApps2009-01-08T18:23:58Z2009-01-08T18:23:58Z<p>Hi,
I'm also getting Secure and Non secure message in IE. When I commented the following piece of code from dojo.js.uncompressed.js file, the message is gone.</p>
<pre><code> if(dojo.isIE){
if(!dojo.config.afterOnLoad){
document.write('<scr'+'ipt defer src="//:" '
+ 'onreadystatechange="if(this.readyState==\'complete\'){' + dojo._scopeName + '._loadInit();}">'
+ '</scr'+'ipt>'
);
}
</code></pre>
<p>Is that an issue with the dojo? I would like to move the commented code to another custom file so that the dojo framework is not affected. Can you suggest a better way of implementing it.
Thanks.</p>