Tagged Questions
0
votes
2answers
34 views
CORS with python baseHTTPserver 501 (Unsupported method ('OPTIONS')) in chrome
Hi I need some help with base authentification while a ajax get/post request to a python baseHTTPserver.
I was able to change some lines of code in the python script for sending CORS headers. It ...
1
vote
0answers
42 views
IE striping headers from HTTP POST request to S3
I'm doing straight-to-S3 multipart file upload via AJAX. Everything works fine under all browsers but IE.
S3 requires an Authorization HTTP header in each POST request which contains the signature of ...
0
votes
1answer
23 views
Is it possible to see if AJAX was used just by looking at the HTTP traffic?
I am making a program to monitor my network, and in this program I am reading the HTTP traffic which is going through my network. One thing I want to do is to separate the AJAX HTTP traffic from the ...
2
votes
1answer
49 views
prevent unhandled jquery ajax error
I know how to receive server data or error. There are many ways. For example:
$.ajax({
type: "get",
url: "/widgets/",
success: function (data, text) {
console.log('this is a ...
-1
votes
0answers
56 views
Ajax 200 results work fine, all others return 0 [closed]
I understand the bases of the problem originates from Cross domain requests( I have to request resources through a sub domain to avoid going through our CDN ). Well all my successful gets work fine ...
0
votes
1answer
40 views
Nothing executes after parsing XML string as an XML object
I have a form which on click of the submit button runs a function which takes all the form data input, creates a xml string from it and then parses that string as an xml object so it can be sent to an ...
0
votes
1answer
53 views
spine.js: why does it serialize POSTs blindly?
This came up during a discussion on another spine.js question:
Since, this is significantly distinct from that question, I am upholding the "one question per post" policy of SO, by branching this off ...
0
votes
1answer
48 views
spine.js: Does it really 'pipeline' POSTs?
I was reading this post from Alex Maccaw, where he states :
The last issue is with Ajax requests that get sent out in parallel. If a user creates a record, and then immediately updates the same ...
1
vote
3answers
74 views
Is it possible to receive out-of-order responses with HTTP?
Sec 8.1.2.2 Pipelining says:
"A server MUST send its responses to requests in the same order that the requests
were received".
So, I thought, if I send out multiple AJAX requests from my ...
0
votes
2answers
31 views
Making HTTP requests on button click
Need to make a HTTP request on click of a button on a webpage! , please guide me with an Example that whether using AJAX + PHP is the way out or Javascript will be able to do the same alone?
0
votes
0answers
28 views
Differentiate between a dangerous redirect and an irrelevant ajax response
On my web page it is possible to send ajax requests and then jump to another page meaning that the AJAX requests are irrelevant and are aborted by the browser. The return from one of these jquery AJAX ...
1
vote
0answers
26 views
Browser mangling 302 responses from Ajax requests
I have the following.
AJAX request made to server from mydomain.blah.com
Server returns 302 but to a slight different domain blah.com not mydomain.blah.com
Browser appears to mangle response. ...
0
votes
0answers
34 views
302 from an AJAX request
I send an AJAX request which returns a 302 (I see this using fiddler) but in firebug I never see the 302. I just see a 500.
Same thing happens with IE.
If an AJAX request returns a 302 do browsers ...
0
votes
2answers
22 views
What is the best way to find an http response that has a certain string of text in its response?
I'm debugging a web app with lots of AJAX on a windows machine. I have Fiddler and Wireshark and I'm open to getting any other free software that can help.
I am looking for the http response (and ...
0
votes
1answer
106 views
Send cross domain HTTP Post with HTML forms
I have this HTML form that I need to do some processing before submitting:
<form action="http://appid.appspot.com/api/foo" id="contact-form" method="post"
name="contact-form">
...
2
votes
2answers
74 views
Get the origination host of a Javascript Http request
When doing a cross domain HTTP request from a Javascript client, like JQuery (from a client browser). In the receiving end, will it be able to point out where the Javascript request came from?
...
1
vote
1answer
71 views
Uploading a photo using XMLHtttpRequest to a Flask webserver
I'm creating a WinJS app and using XMLHttpRequest to send a photo as a blob to a Flask webserver.
openPicker.pickSingleFileAsync().then(function (file) {
...
3
votes
1answer
101 views
No element found FF - Error visible in firebug
I'm creating a global high score table. The JavaScript sends the username and score to the PHP through some AJAX functions and POST. The PHP script then takes the variable, and compares the score ...
1
vote
2answers
89 views
CORS and Origin header?
When we need to do ajax request we do :
if(typeof XMLHttpRequest !== 'undefined') xhr = new XMLHttpRequest();
else
{
var versions = ["Microsoft.XmlHttp",
"MSXML2.XmlHttp",
...
1
vote
0answers
37 views
AJAX: head and more
For asynchronous quick-checks of an URL, I use AJAX with method=HEAD:
function ajax_quickresponse(url) {
var xmlhttp = null;
if (window.XMLHttpRequest)
xmlhttp = new XMLHttpRequest();
...
0
votes
1answer
43 views
SignalR GET requests 'Cancelled' when transport=ServerSentEvents
I have deployed a ASP.NET MVC 4 w/ SignalR application of mine which is working fine on all clients, except one. When using Chrome Dev tools to debug the page I see that the SignalR transport method ...
0
votes
1answer
71 views
jquery ajax call empty querystring
So, I am using jquery to make an ajax call to a php script on my server.
For some reason I cannot figure out, however, there is no querystring sent. Using var_dump() on the $_GET object shows that it ...
3
votes
2answers
259 views
jQuery ajax crashes chrome on HTTP 206 (Partial content)
This thing has been bugging me for some time now and I can't find a reason/solution on the Web so far. Here is the setup:
I have a fat JS client running on a browser, firing up search requests into ...
2
votes
0answers
152 views
Handling jQuery $.ajax response data
I'm requesting an OAuth request_token with a jQuery $.ajax. I get the token as an HTTP response:
...
0
votes
0answers
25 views
django: invoking browser's save as from an ajax invoked view
In my django app I want to both render a template and invoke the browser's save as. I’ve implemented this using ajax – I have a view that renders a template. In that template is some javascript that ...
2
votes
1answer
87 views
Count time between send Ajax request and receive answer
Is there a method to get time between send request and receive answer or do I need to do it manually?
Framework: Vanilla JS
Regards, Matt
1
vote
1answer
97 views
get_header() function not working in php 5.3.3
get_header() function not working in php 5.3.3
getting a warning "Connection refused in ...."
Do i have to enable anything?
Thanks in advance
1
vote
1answer
28 views
Joining concurrent/identical HTTP GET requests?
Do browsers join concurrent identical HTTP GET requests? At least, for static or cache-able content?
That is, if something like this happens:
| AJAX/HTTP-GET(resourceX)
| [start ...
0
votes
0answers
50 views
How do I know if the web server supports cross domain HTTP request?
I want to use make cross domain HTTP request to access the data located on different domain. But I don't know if the web server supports cross domain HTTP request. So I used curl to see the HTTP ...
0
votes
1answer
63 views
No data sent from own HTTP server to browser
I've created simple Java server that uses HTTP protocol over port 4567 to accept connections and (at least for now) send hardcoded response to browser:
public class Connection extends Thread {
...
4
votes
3answers
151 views
CORS - What is the motivation behind introducing preflight requests?
Cross-origin resource sharing is a mechanism that allows a web page to make XMLHttpRequests to another domain (from wikipedia), and it's pretty important (from me :).
I've been fiddling with CORS for ...
0
votes
0answers
86 views
Why do I always get error from this cross domain HTTP request?
I have the following JavaScript code that is on my local computer. The server is a web server that sends out JSON message. I use jQuery cross domain ajax request to retrieve JSON message from the web ...
0
votes
0answers
59 views
Posting client side data to server through Ajax Call or Http Post is better?
I want to post the value from few Controls to server side upon a button click. After this I don't want to redirect my page to else where. I just wanted to display the 'Submitted Successfully' message ...
0
votes
2answers
50 views
Continually request image until found
I am working on an interface that allows for an image to be uploaded asynchronously, and the process is working as expected. The process submits the image to a backend process that manages resizing ...
0
votes
1answer
45 views
update search result with ajax - django
i am trying to sort the result data in client site with ajax. this is my code:
function sort(){
var sortid = $('#sort').val();
$.ajax({
type: "POST",
url: "/sort/",
data: ...
0
votes
1answer
102 views
ajax request getting 'canceled' now that site is live
All of my AJAX requests were working perfectly fine when I had my new version in a sub directory of my site (www.staging.easyuniv.com). When I then moved the site located in staging into the main ...
0
votes
1answer
74 views
AJAX call results in status 0
$.ajax({
url:"myurl",
async:true,
success:function (data) {
//....
},
complete:function (x, st) {
//....
},
error:function (x, st, e) {
...
0
votes
0answers
39 views
Force javascript to use the content of the cache instead of sending a request
I have an endpoint which is configured to handle caching using ETag and If-None-Match headers. This endpoint provides pieces of content which will be loaded and displayed asynchronously on the page. ...
0
votes
1answer
40 views
using 404 page for ajax fallback?
I want to make a single page website, that uses history.pushstate to change the url.
I can make my site have only one html file, the 404 page. so that no matter what url people enter, they get to that ...
1
vote
1answer
117 views
AJAX (or AJAX-esque) File Download
This is a common question asked in various different ways, and I have collected some links below and explain why they don't work. I am looking for a full solution to the following.
In the web ...
0
votes
0answers
77 views
Webapp - HTTP Basic Auth. in ajax calls
I am trying to see various methods i can add to provide basic security in my Ajax requests:
I am running the Apache server and application is build in django.
1) Use HTTP Authentication ...
0
votes
2answers
72 views
What can cause a cookie not to be set on the client?
I have a web application that uses jQuery.ajax to perform a request to another host (right now actually the same because I'm using different ports of "localhost"). The server then returns a cookie.
...
0
votes
1answer
71 views
Cookie set by asynchronous HTTPS request not showing up
I have a website that uses asynchronous http requests (ajax, to use the common misnomer) for performing login and registration. The authentication cookie is set by the asynchronous request and it all ...
0
votes
1answer
41 views
How to send custom tracking data to my server from another domain
I am creating a form handling service that will allow users to copy and paste a form action and the service will store the data in a database and redirect to confirmation page on the users website.
...
9
votes
2answers
845 views
WebSockets protocol vs HTTP
There are many blogs and discussions about websocket and HTTP, and many developers and sites strongly advocate websockets, but i still can not understand why.
for example (arguments of websocket ...
1
vote
1answer
134 views
AJAX Request From HTTPS Page to HTTP Url
I have a case where I need to perform an AJAX request from an HTTPS page to another one (on a different domain) that is not secure. We've already implemented CORS policy and it was working fine before ...
0
votes
0answers
253 views
Sencha touch 2 AJAX HTTP DIgest Authentication
I am looking for javascript code for Sencha Touch 2 that handles HTTP Digest Authentication. It seems such a library is not implemented. I posted a thread in the Sencha Forum but no help so far.
...
2
votes
2answers
84 views
Problems with ajax function
I wrote an ajax function named getContent() and structured like this
getContent(whichcontent){//code here to get content}
The specific code is here:
function getXmlHttpRequestObject() {
if ...
0
votes
2answers
92 views
Retrieve XML data from AJAX, prompt user to Download?
I'm working on the client-side portion of a project and have a situation that currently recieves a block of XML data from the server, and I'm trying to take that information and prompt a user download ...
0
votes
1answer
79 views
maxLength of the individual parameter of the HTTP POST method
Hi,
I am getting a "400 Bad HTTP request " error when form has large data.
I am using Ajax to make a request. I read that the max limit of the HTTP POST data limit
varies from 2MB to 8MB that ...




