xdomainrequest Questions
3
I am aware that this question might be considered duplicate, but it is a new technology and I can not find a recent confirmation of my findings. I also think it potentially useful to have all the e...
Basseterre asked 30/5, 2014 at 11:29
3
Solved
UPDATE: I highly recommend not investing any time in XDomainRequest, because it is a terribly poor implementation with many limitations. It basically only really works for GET requests to non-ssl s...
Purposive asked 14/7, 2012 at 20:37
2
Solved
I am very confused with the XMLHttpRequest and the XDomainRequest reincarnation and would like some help. So here are my findings:
The XDomainRequest in IE8 and IE9 seems to be some kind of XMLHt...
Allotropy asked 6/8, 2013 at 10:9
2
I am trying to do cross-domain on IE.
I used XDomainRequest, and implanted logging for all events (onerror, onload, onprogress and ontimeout) to monitor the progress.
It works sometime, but not a...
Memling asked 8/11, 2011 at 23:24
3
Solved
When I am doing CORS in IE via XDomainRequest object, the Referer HTTP header is not being sent. Is there any official documentatation covering this? I fully understand, that relying on Referer HTT...
Hear asked 14/10, 2013 at 7:0
1
Solved
I am doing a cross domain Ajax call.
My Code:
if (window.XDomainRequest) // Check whether the browser supports XDR.
{
xdr = new XDomainRequest(); // Create a new XDR object.
if (xdr) {
xdr.tim...
Glib asked 3/4, 2013 at 12:9
2
This is the code I am using is as follows down below:
I am using IE9 and am unable to see the request being sent in the Network tab. I do have Access-Control headers set in the JSP as:
<% resp...
Turenne asked 20/11, 2012 at 17:8
1
Solved
The short version:
I want to get this to work with this:
The long version:
I want to create a jQuery extension that adds a progress method to the $.ajax object and which works with IE8 & IE...
Shoshonean asked 5/9, 2012 at 5:43
2
Solved
In IE9, I am attempting to make a cross origin request with cookies. However, even when I have the Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Access-Control-Allow-Methods all se...
Scabby asked 7/6, 2012 at 23:32
4
Solved
I'm trying to make a asynchronous call to a service that returns json using XDomainRequest (IE8). The problem is that i always get an error (the onerror event is fired, and the responseText is alwa...
Colburn asked 19/1, 2011 at 18:52
2
Solved
Since jQuery ajax ist not working for CORS/IE, I'm using XDomainRequest to retreive data from another Server. Work's fine, but I would like to send some header ('Authentification', 'content-type')....
Fp asked 11/3, 2012 at 4:10
2
Solved
I'm trying to use microsoft XDomainRequest to send cross domain request.
Here is the code
...
if ($.browser.msie && window.XDomainRequest) {
// Use Microsoft XDR
var xdr = new XDomainR...
Hua asked 11/12, 2011 at 13:20
2
Solved
Is there an equivalent to Internet Explorer's XDomainRequest in Firefox or any of the other browsers?
I'd like to access a service/website outside of my domain.
Giaour asked 24/4, 2009 at 18:37
1
I'm trying to do something like this (W3 compliant, DOM):
xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
For ActiveXObject('Microsoft.XMLHTTP') and XDomainRequest (IE8). I'm havin...
Banket asked 17/4, 2010 at 4:3
1
I have code that uses Microsoft's XDomainRequest object in IE8. The code looks like this:
var url = "http://<host>/api/acquire?<query string>";
var xdr = new XDomainRequest();
xdr.on...
Grantgranta asked 8/6, 2010 at 16:55
1
© 2022 - 2024 — McMap. All rights reserved.