I have implemented an ajax-polling script that calls an action in the server Controller every 10 seconds. With the response, I replace the content of a div:
function getFoo() {
var link = '/Secure/GetFoo';
$.post(link, function (response) {
$('#FooSection').replaceWith(response);
});
setTimeout("getFoo();", 10000);
}
This is done through https. After some time of being "idle", IE displays the following message:
This page is accessing information that is not under its control. This poses a security risk. Do you want to continue?
If the user clicks Yes, the page is redirected to the div displaying the response only. If the user clicks No, nothing happens, but the div container will not be refreshed.
I know I can suppress this message through browser settings, but that will just bring me to a default Yes selection as per the above dialog.
A similar issue has been asked before, but unfortunately there hasn't been any solution. I basically want to make my ajax-polling work even on a secure connection. Any ideas?
divis inside the page that is being served via https. The response is a somewhat dynamic menu that constantly checks the server for updates. – Alex R. Jun 9 '11 at 10:23.ajax()only post and get through HTTP. – balexandre Jun 13 '11 at 12:33