0
votes
3answers
27 views

Sencha Touch Ajax Request Error: Origin null is not allowed by Access-Control-Allow-Origin.

I am making an Ajax request to remote server and sending parameters as POST method. But I am getting following response: **"MLHttpRequest cannot load ...
1
vote
1answer
19 views

How can I write a wait_for_ajax call in selenium where the web page uses XMLHttpRequest based AJAX calls?

I have a select box which calls a XMLHttpRequest based AJAX call to populate another select box. I want selenium to wait till the select box is populated. I have to wait for XMLHttpRequest's ...
0
votes
0answers
40 views

Why is ajax 'GET' request hanging on an iOS phonegap app?

My phonegap app includes a javascript workflow to populate a web database (sqlite). The workflow consists of a sequence of ajax 'GET' requests that executed synchronously (the the individual ajax ...
0
votes
0answers
15 views

Ajax : force HTTP/1.0

About everything is in the title. I need to communicate with a server using HTTP/1.0 I didn't find the attribute or option to do this in xhr.setRequestHeader() Any idead please ? Thank you all !
0
votes
1answer
73 views

Changing website content dynamically depending on MySQL database value

I want to change my website dynamically based on a value. I retrive data from my MySQL database and want the change to be as close to real-time as possible. I have some code that does what I want to ...
0
votes
0answers
20 views

XMLHttpRequest goes over last three readyStates immediately

I'm trying to write a code that tests XMLHttpRequest to check the different kind of readyState values. According to MDN there are five possible, consecutive states. I've built a little PHP code that ...
0
votes
1answer
24 views

How can I correctly send data through 'PUT' with ajax in the request body like Backbone does

I noticed that when saving data along with an id in backbone what it does is to send a 'PUT' request along with the data inside the request body ( in chrome dev tools appears as "request payload"). ...
0
votes
3answers
66 views

XMLHttpRequest no answer from server

I have tried to get i connection to an php file but i don't recive any reponse from server is anything wrong?, function request(){ // Create our XMLHttpRequest object var hr = new ...
0
votes
0answers
18 views

Error in reading content from URL in Ajax with Opera browser

I work in this code to read the content of a PHP file from other site! this code work in IE and in Firefox,Apple safari,Chrome,.. but it does not work in Opera! please tell me how do the changes in ...
1
vote
2answers
89 views
+50

Browser aborting ajax requests sporadically without return any errors

In my project (PHP w/ symfony2) I do a lot of ajax requests in every page. I'm having a lot of problems with them because it looks like browsers (tested in Chrome and Firefox) are aborting requests ...
1
vote
2answers
53 views

Do Ajax requests still finish when leaving the page?

I have a situation where I need to run some PHP, specifically where I need to send out a SOAP request and wait for the response, and then do something with that, however sometimes these requests can ...
0
votes
1answer
27 views

How to let XMLHttpRequest not cach in IE

if(xmlhttp) { xmlhttp.open("GET","DokterWeek_KlantoverzichtServletAjax?" + $(this).prop("href").split("?")[1],true);//gettime will be the servlet name xmlhttp.onreadystatechange = ...
-2
votes
4answers
45 views

Using PHP as an XML response wont output line break [closed]

I'm trying to get this AJAX working but it wont output a line break instead it outputs a space or doesn't output anything at all, please help i'm sure other people need help with this as well. Edit: ...
1
vote
1answer
69 views

Pass request values using XmlHttpRequest

I have username and two other elements submitted from a form, i can get them by id in a ajax .js file. now i wish to pass these three elements to a php file. i can create three variables each assigned ...
2
votes
0answers
43 views

XMLHttpRequestProgressEvent manipulation from PHP

I'm struggling with this issue: I have a web interface that connects, using sockets, to various C programs running on some routerboards. Every time the C application sends something through the ...
0
votes
1answer
45 views

Ajax responseText doesn't contain all of the output

I just started learning basic Ajax. For now I am not using jQuery ajax yet. But I am having a problem which I couldn't resolve even after lots of searrching. My php file is- $sql = "SELECT * FROM ...
0
votes
0answers
52 views
+50

Access control and XHR requests

I'm struggling with access control implementation for custom framework. RBAC granularity is not needed so I decided to go with some kind of ACL where resources will be controller actions. Here is ...
0
votes
0answers
31 views

Securing REST API using HTTP_X_REQUESTED_WITH and SESSION IDS

I'm building an API for my website and I only want the API to be accessible from my own website. The way I've built it is that I call a PHP file using ajax: <?php session_start(); ?> ...
-1
votes
1answer
28 views

Get a distant text file with Javascript without Jquery [duplicate]

I'm looking to get the content of a text file in Javascript to parse it after. I know how to do it with Jquery, i used to call the ajax function with JSONP, but, this time i would like to do it ...
1
vote
1answer
52 views

How to pass huge data through ajax call using XmlHttpRequest

I need to pass huge data to the controller. I have used XmlHttpRequest. I have written the code like: var xmlhttp; if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { ...
0
votes
2answers
86 views

jquery Ajax Script only starts working after a click anywhere on the page

I use search input field which is loaded via a Smarty template. Smarty else imcludes the search.js script whith the getmyresult() function. The function transfers the input value to a callbackscript ...
0
votes
1answer
14 views

dojo dnd source and xhrPost

I havent tried this yet but I know that Im going to spend alot of time and frustrations getting this to work along the way. I just learned how to use the dojo dnd source recently and I want to know ...
0
votes
0answers
22 views

jQuery AJAX - difference between xhrFileds and beforeSend: function(xhr)

Hi I think this may be splitting hairs but I'm seeing slightly different behavior as I put together my CORS requests using $.ajax and I thought somebody out there might know exactly what the ...
0
votes
1answer
20 views

Javascript CORS upload always finishing with an error event

I need to upload a file to a server following the CORS specification with javascript. There are plenty examples on the internet and in fact everything works fine (the file is uploaded) but the last ...
-1
votes
0answers
37 views

How to consume RSS/XML using jQuery and Ajax

I have been trying to come up with the best solution for consuming an RSS feed via the jQuery.ajax method. My current request code looks like this: function loadJSON() { jQuery.ajax({ type:"GET", ...
0
votes
1answer
103 views

XMLHttpRequest not working in IE10 (rating.js)

I need a little help. I don't know javascript and i have a small problem (i guess) with the rating system from my site. The rating system is this: ...
0
votes
1answer
100 views

JavaScript XMLHttpRequest.onreadystatechange

I'm attempting to do some AJAX and need to know why this code isn't firing a completed or error alert. I'm in Mozilla Firefox 20.0.1 PLEASE NOTE This code IS updating the database (I have a select ...
1
vote
2answers
286 views

Retrieve HTML drop down list value with AJAX

I have an HTML dropdown list which i'm populating from a database. My question is how can i retrieve the value of a selected item from this dropdown list using AJAX? My javascript: <script type = ...
1
vote
2answers
87 views

Javascript execution code order

I am giving my first steps in Javascript and trying to understand how it works. I've come to a problem of execution order of the code. var Parsed = [[]] var txtFile = new XMLHttpRequest(); ...
0
votes
0answers
39 views

can't get parameter from XMLHttpRequest

I can see parameters from js, but I can't use getParameter to get them. what's the problem? js code var email = document.getElementById("email").value; var password = ...
2
votes
1answer
96 views

XmlHttpRequest status = 0 on remote server, status 200 on localhost

I have two nearly identical PHP proxy scripts that I call through nearly identical JS. The first works fine in all scenarios. The second (code below) works on my localhost IIS server in both Firefox ...
2
votes
0answers
34 views

XHR progress events arrive too quickly

I'm doing direct upload to S3 using html form and ajax. It's working good, files get uploaded. My problem is that progress events arrive too quickly. Like all of them up to 99.9% are fired immediately ...
0
votes
1answer
22 views

Same XMLHttpRequest instance for redirect?

If an ajax request returns a 302, will the redirect happen on the same XMLHttpRequest instance?
0
votes
0answers
24 views

Sending an image to server with parameters in xmlhttprequest using boundary

I am unable to send image to the server along with parameters, In server i am getting mapMappableContainerException because of mismatch content. in server i am receiving the image as in form of ...
0
votes
0answers
36 views

Sending image with parameters in xmlhttprequest object

I am sending image with 4 parameters to server. but i am receiving null values from the server. there i problem in parsing the parameters. function SaveVendorDetaills(){ var ...
0
votes
1answer
40 views

XMLHttpRequest delays in starting session

Iam beginner to ajax. When i used ajax for search function it delays in starting operation <script> function showUser(str) { if (str=="") { document.getElementById("txtHint").innerHTML=""; ...
0
votes
0answers
64 views

AJAX Request. XMLHttpRequest cannot load

When I try do cross-domain ajax request I get XMLHttpRequest cannot load http://vimeo.com/api/rest/v2. Origin http: //localhost:34233 is not allowed by Access-Control-Allow-Origin. I write:$.ajax({ ...
0
votes
1answer
152 views

Magento - Ajax calling PHP not working

I installed Magento in local. I added my Ajax code in magento\app\design\frontend\base\default\template\catalog\product\view.phtml I'm trying to post some variables to another PHP file in the same ...
0
votes
2answers
175 views

Loading local content through XHR in a Chrome packaged app

I'm trying to load in a web app that I've built using Backbone and it pulls in JSON and HTML template files that are stored locally. I was wondering with Chrome packaged apps whether it's possible to ...
0
votes
1answer
47 views

Ajax not posting big files

I am uploading files with jQuery's ajax $("#transfer").live("click", function() { var data = new FormData(); data.append("your_email", $("#your_email").val()); ...
1
vote
1answer
78 views

Capture HTTP Status 300 for redirect download links

I'm developing a Chrome Extension to download links on a webpage. I came across some links there were not a direct download, for example like this one ...
0
votes
1answer
32 views

XMLHttpRequest only check server is connect or not, It is not check the URL

function check() { if (window.XMLHttpRequest){ // code for IE7+, Firefox, Chrome, Opera, Safari var request = new XMLHttpRequest(); } else{ ...
1
vote
1answer
294 views

Phantom JS synchronous AJAX request : NETWORK_ERR: XMLHttpRequest Exception 101

I am making a synchronous ajax call ( ajax settings async: false ). This works well. Now I'm trying to write an automated test for this in phantomJS and I'm getting this error NETWORK_ERR: ...
0
votes
0answers
84 views

Why doesn't my dojo xhr.post request work?

I have an xhr post method, but my callback with "alert("data retrieved")" never gets fired and I dont know why. Here is a fiddle for better reading: http://jsfiddle.net/ZKppc/1/ ...
1
vote
1answer
58 views

How to send raw text with xmlhttp request?

I'm trying to send a textarea field's text to a PHP file using ajax, the text contains HTML characters and should not be encoded. Using FormData it works perfectly however it's not supported in ie 9 ...
0
votes
2answers
117 views

onreadystatechange() missing on XMLHttpRequest objects [closed]

(function (send) { XMLHttpRequest.prototype.send = function () { console.log(this.onreadystatechange); //null send.apply(this, arguments); }; ...
1
vote
1answer
67 views

XHR onProgress completed

I'm trying to implement a label with the percentaje of upload using ajax. The problem is that after the xhr returned 100%, it still takes about 17 seconds until the readyState==4 and status==200. I ...
0
votes
0answers
164 views

Get cookie from AJAX repsonse

I'm writing a chrome extension that uses AJAX to talk to a server. I want to read the KEY in set-cookie from AJAX response, but I cannot find a way to do this. I have tried document.cookie and ...
0
votes
1answer
33 views

XMLHttpRequest from saved page in hard disk

I saved a page on a hard drive then I opened it and wanted to connect from a saved html file to the server website on the Internet. When trying to do a HTTP request using XMLHttpRequest from a file ...
-1
votes
2answers
48 views

Connect local file to A URL in the internet (XMLHttpRequest) [closed]

I save a page in hard drive then i open it and want to connect from a local file to a URL on the Internet.When trying to do a HTTP request using XMLHttpRequest from a local file, it basically fails ...

1 2 3 4 5 21