0
votes
2answers
76 views
Basic Authentication With XMLHTTPRequest
Hi,
I am attempting to use XMLHTTPRequest to get an update on twitter.
var XMLReq = new XMLHttpRequest();
XMLReq.open("GET", "http://twitter.com/account/verify_credentials.json", …
0
votes
1answer
21 views
Ajax PageMethods Vs XMLHTTP
Hi guys,
i have a case where when the user closes the browser window i have to set an Application Object to null...and for this i will use the JavaScript onbeforeUnload to do the …
3
votes
1answer
55 views
XMLHttpRequest used to find quicker server
I have a situation where my website needs to quickly retrieve data from my server via AJAX.
My website runs on port 80, serving normal web pages. I normally run my AJAX server on …
0
votes
1answer
26 views
Javascript HTTP Request Queue within object variable - initialization doesn’t work
Hi folks,
I got the following Request Queue implementation from this blog:
http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/
and want to wrap it …
1
vote
6answers
4k 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 w …
1
vote
1answer
23 views
Can I use XMLHttpRequest on a different port from a script file loaded from that port?
I have website that use XMLHttpRequest (jQuery, actually). I also have another site running on the same server, which serves a script file that makes XHR requests back to THAT site …
0
votes
1answer
26 views
Prototype Ajax.Request only calling the last callback
Hi all, I'm writing a userscript for a website that uses Prototype. Rather than use the GM libs (mainly so I can easily repurpose it for Chrome), I decided to use the already-load …
1
vote
1answer
27 views
MooTools - Handle none JSON response
I use Request.Queue from more to fire my request one after one when the previous completes. Now I wonder how I should deal with requests that doesn't return json-encoded data (ie w …
0
votes
1answer
30 views
AJAX readystate
Hi All,
This script sends a request to a Apache web server every 500ms to retrieve an XML document using AJAX. This script functioned correctly on all the browsers listed below u …
1
vote
3answers
46 views
Is nested XMLHttpRequests with multiple closures a good idea?
I have a Greasemonkey script which operates on a search results page at a video site. The function of the script is to take a javascript link that opens a new window with a flash …
1
vote
2answers
40 views
HTTP 401 - what’s an appropriate WWW-Authenticate header value?
Hi,
The application I'm working on at the moment has a session timeout value. If the user hasn't interacted for longer than this value, the next page they try to load, they will b …
1
vote
5answers
65 views
How to emulate XMLHttpRequest client using PHP?
I'm looking for an example how to emulate XMLHttpRequest client using PHP.
In other words, send the request over HTTP POST message, and receive and process the callback message.
0
votes
1answer
29 views
What is the Difference between submit() function and send() JavaScript functions?
Hi,
I have been studying JavaScript from one book. Once I was playing with the codes concerning the client-server site communication, I wanted to do a POST request with the code b …
0
votes
0answers
41 views
ASP.NET Session Variables — Written by file upload — Read by XMLHttpRequest to another page.
I am trying to implement a progress bar to monitor a file upload. The file is uploaded in an iframe and the server side C# code behind implements a buffer to upload the file in ch …
0
votes
0answers
26 views
xmlHttpRequest and returned url
With help of xmlHttpRequest I make a server query.
After that the server is redirecting to another page (e.g. "http://site.com/index.html;var=123")
The question is - how can I ge …
