IE7 security issue

nbryson

New member
Hi there,
Code:
We're using HTML 3.6 (with IE7) and everytime we load up the package we get a prompt along the lines of "This page is accessing information that is not under its control. This poses a security risk. Do you want to continue?". While the page does load as normal if you click "yes", this really isn't a good look. The offending line of code is a jQuery driven GET request for an xml file within the package;
$(document).ready(function(){
$.ajax({
Code:
    		type: "GET",  
		url: "productmanifest.xml",  
		dataType: "xml",  
		success: function(xml) {  
                            //success code here  
		}  
	});  
});
It’s worth noting that the message doesn’t come up when we run the page outside of htmlexe using IE7. For the URL parameter I’ve tried an absolute path (http://heserver:8080/productmanifest.xml) but this didn’t make any difference.

Any idea why this is happening?
 
Last edited:
Please try to see if it has been fixed in HTMLExe 4. HTMLExe 4 can be installed on the same computer as HE 3.6 without overwriting it, so you can safely give it a try.
 
Last edited:
Back
Top