Questions tagged [xdomainrequest]

The XDomainRequest object is implemented in Internet Explorer 8–10 and can be used to do cross-domain asynchronous requests and it also has support for streaming the content.

The XDomainRequest object was implemented in IE8 and can be used to do cross-domain asynchronous requests. It also has support for streaming the content.

Eric Law has explained its use in an IEInternals blog post: COMET Streaming in Internet Explorer

122 questions
0
votes
1 answer

image resize inside iframe inside iframe

Basically we're using a service provided by gapphotos.com where by we can call there images into our site via an iframe. This iFrame then contains another iframe that holds the image. Problem I'm faced with is their images come in two sizes 161x161…
The Angry Saxon
  • 802
  • 1
  • 7
  • 22
0
votes
1 answer

CORS DELETE request via XHR in IE9 or older is permitted

Based on all of the documentation I have read on CORS support in IE9/IE8, it seems quite clear that: You cannot initiate a CORS request in these browsers using XMLHttpRequest. You must use IE's proprietary XDomainRequest. XDomainRequest does not…
Ray Nicholus
  • 18,424
  • 13
  • 56
  • 80
0
votes
1 answer

Send user/pass from IE8/9 to node.js proxy

We have backbone.js application that is using rest API. With every request user/pass should be send to the API. This is how we send the request: `Backbone.BasicAuth.set(tempUser, tempPass); this.fetch({ error: function(){ //…
0
votes
1 answer

Cross domain ajax jsonp request not working in IE8

Using jquery-1.9.1 , I have enabled CORS support. $.support.cors = true; Then I am making an ajax request as shown below, I have also enabled jsonp callback support from the server side. $.ajax({ type: 'GET', url: url, …
teon
  • 8,321
  • 10
  • 46
  • 83
0
votes
1 answer

Is there a way to clear XDomainRequest.responseText in IE8

I'm implementing server push solution. Is there a way to clear XDomainRequest.responseText of IE8, since it gets filled with the every response chunk? (to get same effect as in Firefox xhr.responseText with multipart where it contains only the last…
Don Srinath
  • 1,347
  • 1
  • 18
  • 31
0
votes
2 answers

XDomain.js jquery ajax call in IE for cross domain

I am using this Xdomain.js file from https://gist.github.com/1114981 Here is my jquery ajax call to retrieve xml from cross domain, $(document).ready(function () { $.ajax({ type: "GET", url:…
Murali Prasanth
  • 3,178
  • 2
  • 23
  • 36
0
votes
1 answer

XDR ajax get request with IECors

I'm performing a cross domain get request using similar to the code below (a very simplified version). var addData = function() { $.ajax({ type:'GET', url:'http://DifferentDomain.com/data.php', data:'body', success:…
dev
  • 3,872
  • 3
  • 21
  • 35
0
votes
2 answers

To use the response of XDomainRequest outside of the function "load"

I'm doing a cross domain request for IE using the XDomainRequest in this way: