XMLHttpRequest also known as XHR is a JavaScript API object available in most modern web browsers. Its purpose is to communicate with server using HTTP in asynchronous manner.
150
votes
4answers
50k views
Kill Ajax requests using JavaScript using jQuery
Using jQuery, how do I cancel an Ajax request that I have not yet received the response from?
75
votes
7answers
22k views
How many concurrent AJAX (XmlHttpRequest) requests are allowed in popular browsers?
In Firefox 3, the answer is 6 per domain: as soon as a 7th XmlHttpRequest (on any tab) to the same domain is fired, it is queued until one of the other 6 finish.
What are the numbers for the other ...
73
votes
7answers
114k views
XmlHttpRequest error: Origin null is not allowed by Access-Control-Allow-Origin
I'm developing a page that pulls images from Flickr and Panoramio via jQuery's AJAX support.
The Flickr side is working fine, but when I try to $.get(url, callback) from Panoramio, I see an error in ...
42
votes
4answers
52k views
XMLHttpRequest Origin null is not allowed Access-Control-Access-Allow for file:/// to file:/// (Serverless)
I'm trying to create a website that can be downloaded and run locally by launching its index file.
All the files are local, no resources are used online.
When I try to use the AJAXSLT plugin for ...
36
votes
2answers
8k views
Prevent redirection of Xmlhttprequest
Is it possible to prevent the browser from following redirects when sending XMLHttpRequest-s (i.e. to get the redirect status code back and handle it myself)?
34
votes
7answers
36k views
Access-Control-Allow-Origin Multiple Origin Domains?
Is there a way to allow multiple cross-domains using the Access-Control-Allow-Origin header?
I'm aware of the *, but it is too open. I really want to allow just a couple domains.
As an example, ...
30
votes
1answer
2k views
Why have “while(1);” in XmlHttpRequest response?
I'm playing firebug with Google Calendar. I happens to find that some XHR request has response like below:
while(1);[['us','bW9yZ2FuLmNoZW5nbW9AZ21haWwuY29t 20090320/20090904 63378122163']]
It ...
24
votes
7answers
1k views
Web Scraping in a Google Chrome Extension (JavaScript + Chrome APIs)
What are the best options for performing a Web Scraping from within a Google Chrome Extension with JavaScript and whatever more technologies are available. Other JavaScript-libraries are also ...
17
votes
5answers
8k views
Jquery: Why am I getting an OPTIONS request insted of a GET request?
With this code http://paulisageek.com/tmp/options.html :
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
<script>
...
16
votes
3answers
4k views
Is monitoring location.hash a solution for history in XHR apps?
As is well known, in XHR (aka AJAX) web applications no history for your app is build and clicking the refresh button often moves the user out of his/her current activity. I stumbled upon ...
14
votes
1answer
854 views
Why should I reuse XmlHttpRequest objects?
From what I understand, it's a best practice to reuse XmlHttpRequest objects whenever possible. Unfortunately, I'm having a hard time understanding why. It seems that by trying to reuse XHR objects ...
13
votes
7answers
2k views
AJAX redirect dilemma, how to get redirect URL OR how to set properties for redirect request
First, I'm working in Google Chrome, if that helps. Here is the behavior:
I send an xhr request via jQuery to a remote site (this is a chrome Extension, and I've set all of the cross-site ...
13
votes
18answers
6k views
How secure is a HTTP POST?
Is a POST secure enough to send login credentials over?
Or is an SSL connection a must?
13
votes
5answers
14k views
“not well-formed” error in Firefox when loading JSON file with XMLHttpRequest
I'm getting a "not well-formed" error in the error console of Firefox 3.0.7 when the JavaScript on my page loads a text file containing an object in JavaScript Object Notation format. If the file ...
12
votes
7answers
20k views
Firefox setting to enable cross domain ajax request
I need to temporally allow cross domain XMLHttpRequest. Changing firefox security setting seems to be the way to go. But I've tried with this and this but they didnt work. Has anyone been able to ...
11
votes
1answer
307 views
How many PENDING ajax requests are allowed in modern browsers?
First, I want to make clear that I am not talking about this question How many concurrent AJAX (XmlHttpRequest) requests are allowed in popular browsers? , which is about simultaneous requests.
...
11
votes
1answer
881 views
XmlHttpRequest onprogress interval
I'm using XmlHttpRequests to upload images to a server and I'd like to show the user the progress of these uploads.
Unfortunately the interval between calls to my onprogress-event handler is too ...
11
votes
3answers
12k views
“Origin null is not allowed by Access-Control-Allow-Origin” in Chrome. Why?
I am working on some Javascript to run locally on my PC. I am using a jQuery CSV plugin (http://plugins.jquery.com/project/csv) to load load a csv file into javascript arrays. The script is simple:
...
10
votes
6answers
202 views
longpoll XHR vs iframe
I'm implementing typical server-push (comet) application. I'm choosing between two options: the longpoll XHR and iFrames. What are pros and cons of these? I know about the cross-site restrictions and ...
10
votes
2answers
1k views
How does Facebook chat avoid continuous polling of the server?
I am trying to understand how Facebook's chat feature receives messages without continuously poling the server.
Firebug shows me a single GET XmlHttpRequest continuously sitting there, waiting for a ...
10
votes
3answers
5k views
HTTP HEAD Request in Javascript/Ajax?
Is it possible to do a HTTP Head request solely using an XMLHTTPRequest in JavaScript?
My motivation is to conserve bandwidth.
If not, is it possible to fake it?
9
votes
2answers
2k views
jQuery posting valid json in request body
So according to the jQuery Ajax docs, it serializes data in the form of a query string when sending requests, but setting processData:false should allow me to send actual JSON in the body. ...
9
votes
3answers
1k views
Accessing binary data from Javascript, Ajax, IE: can responseBody be read from Javascript (not VB)?
First of all, I am aware of this question:
http://stackoverflow.com/questions/1095102/how-do-i-load-binary-image-data-using-javascript-and-xmlhttprequest
and specifically best answer therein, ...
9
votes
4answers
812 views
How to check if XMLHttpRequest's send() supports File
Safari's XMLHttpRequest's send() method supports a File argument. Firefox does not (yet).
How can I check if this is supported? In Firefox, it will just behave as if an empty string was passed.
I'm ...
9
votes
2answers
7k views
Cross-browser implementation of “HTTP Streaming” (push) AJAX pattern
Client request web page from server. Clent then requests for extra calculations to be done; server performs series of calculations and sends partial results as soon as they are available (text format, ...
9
votes
4answers
11k views
How do I load binary image data using Javascript and XMLHttpRequest?
I was trying to load an image client side and base64 encode the bytes returned by the server in order to pass it off to perform some processing. IE has a RequestBody property of the XMLHttpRequest ...
8
votes
1answer
1k views
Single-Sign-On ASP.NET MVC
We are trying to build a cross-domain single-sign on solution using ASP.NET MVC.
Any existing solutions or tutorials available ?
8
votes
5answers
1k views
Manually making AJAX calls in ASP.NET and C#
I want to write my own AJAX in ASP.NET, and not use the ASP.NET ScriptManager, etc.
WHY? I like doing stuff manually and knowing how stuff works from the inside, so I just want to do it for myself.
...
8
votes
5answers
539 views
AJAX and Client-Server Architecture with JavaScript
I have to program websites, but I rather don't like the static HTML nature. I prefer more of a client-server architecture.
Now I've figured, that with XMLhttp, you can basically dynamically update ...
8
votes
6answers
5k views
how do I access XHR responseBody (for binary data) from Javascript in IE?
I've got a web page that uses XMLHttpRequest to download a binary resource.
In Firefox and Gecko I can use responseText to get the bytes, even if the bytestream includes binary zeroes. I may need to ...
8
votes
8answers
688 views
How to display HTML to the browser incrementally over a long period of time?
Do I need to pass back any HTTP headers to tell the browser that my server won't be immediately closing the connection and to display as the HTML is received? Is there anything necessary to get the ...
8
votes
5answers
2k views
Browser waits for ajax call to complete even after abort has been called (jQuery)
I have some (potentially) long-running ajax calls that I would like to abort if the user navigates to another page. The following jQuery code calls abort on all pending XMLHttpRequest objects upon ...
8
votes
5answers
14k views
Cross-site XMLHttpRequest
I want to provide a piece of Javascript code that will work on any website where it is included, but it always needs to get more data (or even modify data) on the server where the Javascript is ...
7
votes
1answer
261 views
ArrayBuffer vs Blob and XHR2
XHR2 differences states
The ability to transfer ArrayBuffer, Blob, File and FormData objects.
What are the differences between ArrayBuffer and Blob ?
Why should I care about being able to send ...
7
votes
1answer
208 views
XmlHttpRequest and threads in Delphi
I use Delphi 2010 and when I try to perform an XmlHttpRequest operation inside a separate thread from my application, I get an EOleSysError exception with the following message:
'CoInitialize has not ...
7
votes
1answer
146 views
Will this JavaScript code garbage-collect the way I expect?
function fetchXmlDoc(uri) {
var xhr = new XMLHttpRequest();
var async = false;
xhr.open("GET", uri, async);
xhr.send();
return xhr.responseXML;
}
Basically, when I call this ...
7
votes
2answers
1k views
How to modify Cookie from Ajax call
I have this code:
window.onload = function() {
document.cookie = 'foo=bar; expires=Sun, 01 Jan 2012 00:00:00 +0100; path=/';
var xhr = new XMLHttpRequest();
xhr.open("GET", ...
7
votes
5answers
2k views
$_SERVER[“CONTENT_LENGTH”] returning zero when uploading a file unsing XmlHttpRequest
I'm having an issue on my development machine which seems isolated to this machine and can't figure it out.
I have a jQuery file uploader which posts the user selected file to a php script for ...
7
votes
3answers
400 views
Detecting if a browser's cache is full
We've identified that full browser caches are the cause of a problem on our extranet. It only affects a small number of our users, but we'd like to alert them to the problem and give them some ...
7
votes
4answers
447 views
Is Form Tag Necessary in AJAX Web Application?
I read some AJAX-Form tutorial like this. The tag form is used in HTML code. However, I believed that it is not necessary. Since we send HTTP request through XmlHttpRequest, the sent data can be ...
7
votes
1answer
9k views
WebKit “Refused to set unsafe header 'content-length'”
I am trying to implement simple xhr abstraction, and am getting this warning when trying to set the headers for a POST. I think it might have something to do with setting the headers in a separate js ...
7
votes
3answers
1k views
Cross-Origin Resource Sharing (CORS) - am I missing something here?
I was reading about CORS and I think the implementation is both simple and effective.
However, unless I'm missing something, I think there's a big part missing from the spec. As I understand, it's ...
7
votes
4answers
18k views
INVALID_STATE_ERR: DOM Exception 11
I'm developing a simple auxiliary class to send requests using XmlHttpRequest (code below). But I cant make it work. At google chrome, for example, I get the error INVALID_STATE_ERR: DOM Exception 11 ...
7
votes
3answers
1k views
jQuery AJAX fires error callback on window unload?
If I navigate away from a page in the middle of an $.ajax() request it fires the error callback. I've tested in Safari and FF with both GET and POST requests.
It has been suggested that one could ...
7
votes
3answers
6k views
Firefox error 'no element found'
First off, this isn't exactly the ideal way of setting up a page, however there's a need to distribute a script as 1 file.
I have a php script at the top of an otherwise xhtml document with ...
7
votes
2answers
3k views
What do the different readystates in XMLHttpRequest mean, and how can I use them?
XMLHttpRequest has 5 readystates, and I only use 1 of them (the last one, 4). What are the others for, and what practical applications can I use them in.
7
votes
2answers
2k views
Differentiating Between an AJAX Call / Browser Request
Is there anything in the header of an HTTP request that would allow me to differentiate between an AJAX call and a direct browser request from a given client? Are the user agent strings usually the ...
7
votes
8answers
23k views
XMLHttpRequest POST multipart/form-data
I want to use XMLHttpRequest in JavaScript to POST a form that includes a file type input element so that I can avoid page refresh and get useful XML back.
I can submit the form without page refresh, ...
6
votes
1answer
105 views
Firefox + jQuery on OS X doesn't show errors thrown in AJAX handlers?
When an error occurs in a jQuery AJAX handler on Firefox + jQuery + OS X the error seems to be silently ignored.
Example code: http://jsfiddle.net/bGuX9/
Chrome correctly reports both errors in the ...
6
votes
0answers
429 views
Request format is unrecognized for URL unexpectedly ending in '/Convert' happens after 1-2 days
I'm calling a webservice using an Microsoft.XMLHTTP call:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", "/xxx/Converter.asmx/Convert", false);
...