Tagged Questions
The xmlhttp tag has no wiki summary.
32
votes
2answers
654 views
How does JavaScript handle AJAX responses in the background?
So, i'm wondering, since JavaScript runs in a single thread, after an AJAX request is made, what actually happens in the background ? Is JavaScript somehow polling for an AJAX response ? And how does ...
6
votes
2answers
10k views
How to call web service using vbscript (synchronous)?
Actually there many examples and I have used one of them. But it works asynchronous, I mean it is not waiting the function that I called to finish.
function ProcessSend()
Set oXMLHTTP = ...
4
votes
3answers
4k views
differences between Msxml2.ServerXMLHTTP and WinHttp.WinHttpRequest?
just when I finally understood the difference between Msxml2.XMLHTTP and Msxml2.ServerXMLHTTP
http://support.microsoft.com/kb/290761
XMLHTTP is designed for client applications and relies on ...
3
votes
4answers
4k views
System.Net.HttpWebRequest in classic asp?
I've got a classic asp app that needs to post XML to a payment engine, and the reference code uses a System.Net.HttpWebRequest object (asp.net). Is there an equivalent in Classic ASP that I could use ...
3
votes
5answers
2k views
How to carry out Cross Domain request in a Webbrowser Control?
As you know doing Cross Domain XMLHTTP requests is not allowed for security reasons under Internet Explorer.
I have a WebBrowser Control and I'm using DocumentText instead of Navigate to a URL. Since ...
3
votes
4answers
10k views
MSXML2.XMLHTTP send method works with early binding, fails with late binding
The code below works. But if I comment out the line "Dim objRequest As MSXML2.XMLHTTP" and uncomment the line "Dim objRequest As Object" it fails with the error message "the parameter is incorrect". ...
2
votes
1answer
83 views
automate submitting a post form that is on a website with vba and xmlhttp
I'm using xmlhttp via vba in excel 2010. I need to programmatically add an item to a shopping cart on a website. I have the code below so far, it uses the POST method
A couple of things I think ...
2
votes
1answer
44 views
How to prevent outstanding jquery ajax events throwing error when new page is loaded in Firefox
If I have outstanding jQuery $.ajax events that are awaiting a response from the server, they all throw errors when a new page is loaded (by a user clicking on an href for example). This seems to be a ...
2
votes
1answer
113 views
FF extension - getting xmlhttp.status==0
I'm writing an extension for FF and it is calling using "PageMod" to the js file that contains:
function handleServerResponse() {
if (xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
...
2
votes
2answers
253 views
AJAX Only Javascript Library
I am searching for a Javascript Library Which has only AJAX no other feature. e.g. a Small Simple XMLHttp Wrapper.
2
votes
3answers
197 views
.NET: Posting Xml to a web-server?
What is the proper way to post an XmlDocument to a web-server? Here is the skeleton function:
public static void PostXml(XmlDocument doc, String url)
{
//TODO: write this
}
Right now i use:
...
2
votes
1answer
641 views
XmlHttp: How to get the actual statusText from an msxml.xmlhttp object?
A web-server is returning a status code and description in response to a request by an XmlHttp component. The actual status response from the server begins with:
HTTP/1.1 400 Not a valid http POST ...
2
votes
2answers
665 views
Setting cookie by calling webpage by Microsoft.XMLHTTP
The situation:
I have 2 webpages with 2 domains (backoffice.myurl.com & www.myurl.com).
The backoffice is written in classic asp, the frontend in asp.net 3.5 (vb.net)
When I hit a button in the ...
1
vote
1answer
53 views
How to get value in accordance with the sequence ID name of the onchange event?
There is one table that have fields included the add row button. I am using onchange event to call data from other tables, so when I select an option in the option box can automatically get the value ...
1
vote
1answer
57 views
In VBA after automated xml form post, how can I automate interaction with the response?
I am using xml in VBA. The code below adds an item to a shopping cart on a remote website (posts a form). Then the code displays the result in Internet Explorer.
You can see in the response there ...
1
vote
2answers
117 views
Can a classic ASP page using xmlhttp make a JSON request?
I am completely lost. I am trying to post to an API on a remote server from a classic asp page that uses vbscript. My code:
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "POST", ...
1
vote
2answers
95 views
Can't get the text from a node in XML
This is probably a simple question but using xmlhttp, how do I get the text of the token node in this XML? There has to be a better way than this:
...
1
vote
1answer
239 views
XMLHTTP and Special Characters (eg, accents)
I am using Microsoft.XMLHTTP via VBA to pull in the body of a web page. In doing so, characters such as é get replaced with "?" or something equally not useful.
Here's the basic code:
Set objHTTP = ...
1
vote
1answer
163 views
Coding with XMLHttpRequest for Safari Extension
In my extension, I create Access Level as "All" as well as I add whitelists as http://*/* too for every domain.
And I have following code in my JS file (which run as end script):
var feedbackmsg = ...
1
vote
5answers
76 views
Returning a value from Javascript function
I am using the following code to show value return by the function test2.
The output showing is: Value of x is: undefined
Can anyone help me in explaining how can I return a value from function ...
1
vote
1answer
881 views
Microsoft Access 2007 and 2010: “Run-Time Error '429': ActiveX component can't create object”
I am trying to fix a Microsoft Access database that was imported from Access 97 format to Access 2007 format (.mdb to .accdb). The import was successful and I was able to make the database fully ...
1
vote
5answers
316 views
MSXML alternative
Is there a MSXML alternative?
I think MSXML clashes with previous versions.
Also I prefer open source, at least tools with source.
Delphi is my choice but I can manage c/c++.
It should support all of ...
1
vote
2answers
101 views
ASP.NET webservice: one call to my XmlHttp results in a double'd request
i have a very strange problem with my webservice:
its a typical/standard ASP.NET (v4) webservice, beeing called via GET.
everything works fine, but today i did a trace since i set up a customn ...
1
vote
1answer
80 views
locating Header in ajax XMLHttp request?
where i have to place the headers in ajax and XMHttp requests in POST method like
For example:
headers.put("X-PAYPAL-SECURITY-USERID", "tok261_biz_api.abc.com");
...
1
vote
1answer
19 views
trouble with populating an image tag with xmlthttp.resonse
Hi
i have a php page echoing some text and an image. I want the text to go to a div tag and the image to go to a separate img tag. Right now I can get both but they both show up in the div tag. I want ...
1
vote
1answer
256 views
AJAX request only works once in IE
I have this issue, in FF it works great but in IE only works once...
the html is
<form>
<input type="button" value="test" onclick="javascript:vote();"/>
</form>
the javascript
...
1
vote
2answers
344 views
PHP Database Value Change Listener, is there a better way?
Our company deals with sales. We receive orders and our PHP application allows our CSRs to process these orders.
There is a record in the database that is constantly changing depending on which order ...
1
vote
1answer
70 views
Problem when send a xmlHTTP request
When I send a string with text = "Frédéric" via a xmlHttp request to my server side code then I get in my Action for the String the following text = "Fr?d?ric".
This is for all the special characters ...
1
vote
0answers
849 views
Post SOAP multipart message via VBA (MS Access) with MSXML2.XMLHTTP, SAXParseException error
everyone.
I need to send multipatrt message (SOAP message with attachment) by using MSXML2.XMLHTTP in MS Excel (code bellow).
strBoundary = "----=_Part_100_13604846.1299855348150"
//message head
xml ...
1
vote
2answers
261 views
Form post asp classic xmlhttp
I'm trying to do a form post from another site that is not mine, but
I am not able ta give error.
There on the site the post is mounted like this:
<a href="javascript:document.result.submit()" ...
1
vote
1answer
94 views
Input onchange problem: 'refiring' a function
I'm adding products with its units to shopping cart via AJAX XmlHttp object. It does everything just fine but i have a problem when performing first succesful XmlHttp request: if i re-change units ...
1
vote
1answer
550 views
Passing xml via query string to Classic ASP form
I have a test form, (see below), that if I Submit manually, (clicking the Submit button), returns an XML list of orders from the action script.
I would like to be able to pass the XML currently ...
1
vote
1answer
1k views
XHR readyState = 4 but Status = 0 in Google Chrome Browser
Hello I've got a strange problem with an AJAX call on my site. I make a simple AJAX call to a script on my site. But the AJAX call fails with readyState = 4 and status = 0. There's no cross domain ...
1
vote
2answers
911 views
Find the first character of input in a textbox
I am stuck in implementing the following:
User starts typing in a textbox.
The javascript on page captures the first character typed, validates that it is an english alphabet (a-z,A-Z) and converts ...
1
vote
3answers
6k views
Sending a 'application/soap+xml' SOAP request using Classic ASP
Any help with this would be appreciated; I've been at it for a few days now.
Below is the code that I've got so far; unfortunatly when I run it I get a HTTP 415 error; Cannot process the message ...
1
vote
0answers
306 views
Access To Restricted URI Denied (Trying to Call a WCF Method from XMLHTTP)
I have a web solution that looks something like the below - a web project,
a web service, and a service library.
Web Solution1
- Web Project
-- test.aspx
- WebAPILibrary
-- trade.cs
-- ...
1
vote
1answer
1k views
How should a http-handler fill the calling xmlhttp object's responsetext property?
Hi Everyone,
I'm trying to implement a http handle (.ashx) using asp.net for an environment where the clients will be using serverxmlhttp to request information from the handler. Here is the code ...
1
vote
1answer
441 views
How to read XML sent using XMLHTTP in codebehind file?
I have a javascript code where i am creating an XML Dom and sending (using XMLHTTP ) it to a codebehind page
(server.aspx.cs).How can i read the XML there ?
1
vote
4answers
3k views
Ajax and a restricted uri
I would like to make an ajax call to a different server (same domain and box, just a different port.)
e.g.
My page is
http://localhost/index.html
I would like to make a ajax get request to:
...
0
votes
1answer
70 views
Extracting data from 60,000 Facebook ID's in less than 6 hours?
I have downloaded the Faceboojk profile ID's of all of our Facebook fans to an access databse and have written a function to pull the locale data from the Facebook graph api. Here is an example of the ...
0
votes
1answer
28 views
How to retrieve onClick/onChange data using xmlhttp
I'm relatively new at all this, and the search to answer this question has been killing me. Note that I may be asking the wrong question, and maybe even the wrong terminology, but for what it's worth:
...
0
votes
1answer
32 views
cache with ajax
I allready have this:
$(document).ready(function() {
// one time stuff
$.ajaxSetup({
cache:false
});
}
And i now it works cause i had a problem without it and i added it for a ...
0
votes
1answer
38 views
XML post to secure url does not work
i am trying to setup a payment process, which is basically an emulation of the way Authorize.net works (AIM, if you know it) - where i POST to a secure URL using xmlhttp and then receive their reply ...
0
votes
0answers
38 views
response code 200 from IE but response code 0 for other browsers
I created a local web page, and calling a remote web service, the response code for IE is 200 but other browsers response code is 0
can any one help for this
this is my code for html file
...
0
votes
0answers
58 views
XMLHTTP - How to get info FROM Ajax after 5 seconds with Server.XMLHTTP ?? Impossible?
How to capture information from another site that uses Ajax?? This site puts information 5 seconds after entering on the page. I'm using Server.XMLHTTP. And only can get the main page (full page) ...
0
votes
2answers
43 views
why do i always get a 404 on this function?
I'm using this function to check if a webpage exists. To do this I am checking if it has a header. But I always get a 404, even with a blank url.. what am I doing wrong here?
var xmlhttp;
function ...
0
votes
1answer
31 views
xmlhttp from variable rather than url - javascript
I am pulling in multiple xml files that are stored in the var names from a loop, but I want to use the xmlhttp request with the variable names, since it changes each iteration rather than reassigning ...
0
votes
1answer
55 views
AppleScript, simple GET request
Im trying to rewrite something ive written in Visual Basic that uses an XMLHTTP 'GET' request. How do I do this in AppleScript? I can only seem to find information about 'POST' requests, which require ...
0
votes
3answers
64 views
Javascript security stopping me?
I'm pretty sure it's a security issue keeping me from doing this, but I wonder if there's a workaround I don't know of...
I have a script to inject a user's email into the contact DB of my client and ...
0
votes
1answer
113 views
How can I access responseText of a jqXHR object from a successfull AJAX call?
I have following ajax call in my JavaScript code
url = 'http://news.ycombinator.com/?callback=?';
$.ajax({url:url ,async:!1,dataType:'script', complete:function(result)
...