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?

link|improve this question

Is the page also served using https? – ZippyV Jun 9 '11 at 10:12
@ZippyV, Yes. The div is 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
Is the page served via https too? (I've only seen this in relation to cross=domain requests) – symcbean Jun 9 '11 at 12:17
@symcbean, They are from the same domain, and https. – Alex R. Jun 9 '11 at 12:32
2  
using fiddler are you sure your post is done by HTTPS, I had a thought that the simple methods of .ajax() only post and get through HTTP. – balexandre Jun 13 '11 at 12:33
show 9 more comments
feedback

7 Answers

up vote 10 down vote accepted
+25

You should never see that dialog on an Internet-Zone page. By default, this operation is silently and automatically blocked in the Internet Zone.

There are two root causes for that dialog to appear in the Intranet zone:

1> Attempting to do a cross-origin request using the XMLHTTPRequest object (http://blogs.msdn.com/b/ieinternals/archive/2011/04/22/ie-security-prompt-page-accessing-cross-domain-information-not-under-its-control.aspx)

2> Attempting to navigate an OBJECT Tag hosting HTML to a cross origin page.

You can avoid case #1 by using XDomainRequest instead of XMLHTTPRequest. You can avoid case #2 by using an IFRAME instead of an OBJECT tag.

link|improve this answer
So we have to come up with two solutions, one for every browser but IE and one for IE. That's just great. – Mike Cheel Feb 21 at 19:39
I think you're a bit confused; all browsers enforce a Same-Origin policy. The question is how your code is actually behaving underneath the JQuery abstraction. – EricLaw -MSFT- Apr 2 at 0:41
I believe I only had this issue with IE8 but to be honest I cannot remember now. Thanks for the follow up though Eric. – Mike Cheel Apr 2 at 15:07
feedback

I ran into a similar problem the other day, being unable to find out why IE would complain after an AJAX request.

I used Firebug's net console and just went through the requests one by one till i found one that was http:// instead of https://, i suggest you do the same - It'll be allmost impossible for us to debug this without seeing the page, but it could be something as little as a background image not being loaded via https.

Note: I did notice you saying it was IE, but a problem like this would probably not be browser-specific, Firefox/Chrome just doesn't make the same fuss about there being non https elements as IE does.

link|improve this answer
@Mick Hansen, I am actually trying to run this on FF4, closely monitoring the Net console in Firebug. All get requests are on https so far, no http only. Will wait a few more minutes for the session to expire then see how it goes. – Alex R. Jun 14 '11 at 6:21
1  
@Alex Very strange, if its acting up there really ought to be some non-https request, and it should show up via the net console if you have it turned on from the start - However don't just check get requests, check them all :) – Mick Hansen Jun 14 '11 at 7:06
1  
@Mick, Okay after about an hour I'm getting a 302 on the same request. Previously it was all 200... This is FF now. I reckon if this were in IE, then I would get the message as in my question. – Alex R. Jun 14 '11 at 7:21
2  
@Alex I wouldn't imagine the HTTP Response Code makes any difference as long as it's still HTTPS, strange. Although a 302 is a redirect, maybe the redirect target isn't HTTPS? – Mick Hansen Jun 14 '11 at 8:00
1  
Based on the console, the redirection attempt targets the ADFS server, which handles the authentication. It is HTTPS as well. However, what's suspicious is that it belongs to another domain albeit being accessible within the same intranet. (I'll have a look to confirm.) I am hosting this web app from Azure, if that's of any help... But yeah, redirection to another website is also a viable workaround for me if all else fails. – Alex R. Jun 14 '11 at 10:20
show 1 more comment
feedback

There's two things about your code :

Why do you use a POST ajax request ? why not GET ? Your request looks like a GET request (you want to get some data), so the GET method is probably a better choice.

It's not linked to your problem, but you should not use setTimeout with a string to eval. You should give setTimeout a variable as the first argument, and this variable should be the function you want to execute.

function getFoo() {
    var link = '/Secure/GetFoo';

    $.get(link, function (response) {
        $('#FooSection').replaceWith(response);
    });

    window.setTimeout(getFoo, 10000);
}
link|improve this answer
I tried this and still the same issue. – Alex R. Jun 13 '11 at 5:27
1  
Probably he is using POST to avoid caching. – NullOrEmpty Jun 14 '11 at 8:37
feedback

If there is even one element whose src attribute begins with "http" instead of "https" in your code, IE will show that message.

Are you sure that the data you 're fetching has no elements that have src="http:// ... " in their src attribute?

link|improve this answer
I verified the expected response, and the elements do not have reference to http only in their src attributes. Fyi, I am retrieving an ActionResult from the controller. The returned partial view replaces the contents of the div #FooSection in my https page. – Alex R. Jun 14 '11 at 5:59
1  
i think you should double check, even the JQuery JS file should be served from https, otherwise you can get that message. – Dementic Jun 17 '11 at 9:28
feedback

I've seen this happen before because the new content being inserted via the ajax call had links to none secure image assets, any chance this is the problem you are seeing?

link|improve this answer
the response I am getting had no images at all. Just ul, a and table. Oh, there are some javascripts as well, basically, a View page without non-secure assests from what it seems. – Alex R. Jun 18 '11 at 0:28
Any chance those javascripts are generating the insecure requests? – Martin Jespersen Jun 19 '11 at 9:42
Will have to check. But the javascripts included in the returned view is not being called when the session expires. The culprit that causes the message above is caused by the ajax-polling script (outside that returned view), which is part of the site's main masterpage. – Alex R. Jun 19 '11 at 13:08
feedback

Did you try using absolute url?

var link = 'https://www.yourdomain.com/Secure/GetFoo';

link|improve this answer
No I haven't. Would that help? – Alex R. Jun 19 '11 at 13:06
You should verify that the request to 'link' is being sent over https. If it is not being sent over https, then trying to use absolute url specified as 'https' will probably help. You can verify that the request is being sent over https using either httpwatch or fiddler. You can donwload httpwatch here - httpwatch.com/download You can download fiddler here - fiddler2.com/Fiddler2/version.asp – sandeep Jun 19 '11 at 19:42
feedback

Have you tried using protocol-relative hyperlinks (//something.com/image.png)? See this link or this one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.