show/hide this revision's text 4 added 61 characters in body

After reviewing the JavaScript sourcecode for Dijit, I thought it was likely the error results from an "insecure" refrence to a dynamically generatded 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.

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:

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{...

What's the problem? The IE doesn't know if the src for the IFRAME is "insecure" secure" - so I replaced it with the following:

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{...

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.

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.

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;

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") + '");';

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.

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.

All is good! No sporadic security problems with the page loads.

show/hide this revision's text 3 added 843 characters in body

After reviewing the JavaScript sourcecode for Dijit, I thought it was likely the error results from an "insecure" refrence to a dynamically generatded 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.

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:

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{...

What's the problem? The src for the IFRAME is "insecure" - so I replaced it with the following:

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{...

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.

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.

Now that my page

As it turns out, there is static and also a background image being set in the only thing it does onload event for dijit.wai (line #1325). This reads something like this;

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") + '");';

This won't work because the background-image tag doesn't include HTTPs. Despite the fact that the location is load relative, IE7 doesn't know if it's secure so the warning is posed.

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 Dijit JavaScript filessince there are other general buggy issues with this method, I'm really not sure what else could be wrongI opted to remove everything in the onload() for dijit.wai.Help

All is good! No sporadic security problems with the page loads.

show/hide this revision's text 2 deleted 14 characters in body

This

After reviewing the JavaScript sourcecode for Dijit, I thought it was likely the error results from JavaScript in my dijit.js filean "insecure" refrence to a dynamically generatded IFRAME. There 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.

What's the problem? The src for the IFRAME is "insecure". Simply replace insecure" - so I replaced it with the following:

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. I have not tested this with earlier versions of IE; however, for my system IE7 support is sufficient.

Another common problem

My first 5-10 page reloads are dynamic background images specified in JavaScript against something like a DIV. This would look like:

mydiv.style.background = "url(images/background.png)";

You will need to specify fine, but then the full URL for security error starts popping up again. How is this to work on an SSL possible? The same page in is "secure" for 5 reloads and then it is selected by IE as "insecure" when loaded the 6th time.If possible, you should try to restructure your backgrounds in a CSS

Now that doesn't dynamically modify my page is static and the DOMonly thing it does is load the Dojo and Dijit JavaScript files, I'm really not sure what else could be wrong. Help!

show/hide this revision's text 1