Tagged Questions
The serverxmlhttp tag has no wiki summary.
18
votes
4answers
30k views
How can I send an HTTP POST request to a server from Excel using VBA?
What VBA code is required to peform an HTTP POST from an Excel spreadsheet?
Accepted Answer Note: For greater control over the HTTP request you can use "WinHttp.WinHttpRequest.5.1" in place of ...
4
votes
4answers
2k views
How do I fire an asynchronous call in asp classic and ignore the response?
Here's the gist:
I have a call I want to make in asp, and I do not care about the response. I just want to fire the call and I do not want the page to wait for the response. According to the ...
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
1answer
1k views
How do I prevent ServerXMLHTTP from automatically following redirects (HTTP 303 See Other responses)?
I am using ServerXMLHTTP to perform an HTTP POST. The response returned is a redirect (specifically 303 See Other). ServerXMLHTTP is automatically following this redirect but this is causing an ...
2
votes
1answer
239 views
MSXML / ServerXmlHttp POST Failing intermittently (Delphi)
I have some legacy Delphi code that POSTs XML to a secure web server using the MSXML component.
The code has been working fine for years. Recently, we made some changes that makes the XML file size ...
2
votes
2answers
668 views
msxml3.dll error '80072ee2' in ASP Page
We have just moved to a new dedicated server that has Windows 2008 and SQL Server 2008. I am trying to access an ASP page on the same server using Server.CreateObject("MSXML2.ServerXMLHTTP").
On our ...
1
vote
0answers
70 views
How to track down ServerXMLHTTP memory leaks / calls?
We are monitoring the execution of database job using a in-house tool which requires an URL call after the job has been finished.
For our SQL jobs we use custom function (to be found here) that ...
1
vote
1answer
941 views
Classic ASP MSXML2.ServerHTTP Post - Youtube Api
I am trying to build an application where i can upload files to youtube.
I have gotten OAuth working, and Youtube is returning a session!
The problem i am having is, youtube requires i make an ...
1
vote
1answer
96 views
Replacement for ServerXMLHTTP30
What is the best replacement for ServerXMLHTTP30 in .NET 3.5. Is HttpWebRequest good candidate?
I am in the process of creating an application that will get a XML stream as a response to a request.
...
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
2answers
3k views
How do I set the character set using XMLHttp Object for a POST in classic ASP?
I have to use the XMLHttp object in classic ASP in order to send some data to another server via HTTP from server to server:
sURL = SOME_URL
Set oXHttp = Server.CreateObject("Msxml2.XMLHTTP")
...
0
votes
0answers
169 views
msxml3.dll error '80072ee2' The operation timed out
I have a classic ASP page that is reading an external rss feed (xml document) and then displaying it on a web page. This was working fine until my website was moved to a new server. I think it is now ...
0
votes
0answers
145 views
vba serverXMLHTTP and Request Header Referer
I'm using serverXMLHTTP in vba with Access 2007 to navigate in a URL. I need to set the Referer header in request to the app work correcly becouse the server needs the Referer header. But when a I set ...
0
votes
0answers
42 views
VBA Access - Set proxy with .PAC and Microsoft.ServerXMLHTTP6.0
I just wanna know if there's a way to use MICROSOFT.ServerXMLHTTP6.0 setProxy when the proxy data is set in a configuration file (.PAC).
Thanks
0
votes
1answer
204 views
errors ServerXMLHTTP.send in classic ASP when I am using iis7.5
I have shared hosting which runs iis7.5 .
I wanted to run this code which allows me to display the content of the another url.
<%
url = "abc.com"
Response.Write(url)
set ...
0
votes
1answer
82 views
asp ServerXMLHTTP doesnt get all of source code
set objXmlHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objXmlHttp.Open "GET", "http://www.yapi.com.tr/Haberler/e_61034.html", false
objXmlHttp.Send
response.write objXmlHttp.ResponseText
This ...
0
votes
2answers
108 views
Getting the data in SOAP response using XmlHttp
I'm using XhmHttp request object to send SOAP request to web services from classic asp page. The web service is returning xml string as result how can I read the xml string result from the SOAP ...
0
votes
1answer
335 views
Have serverxmlhttp ignore request for option client-certificate
A certain SOAP webserver I want to reach is configured to 'Accept client certificates' but does not require them!
When I enter the URL directly into Internet Explorer it will show a pop up for a ...
0
votes
0answers
80 views
Changing ServerXMLHTTP30 to DOMDocument in VBA
I am presently using what is surely an unnecessary local solution to extract xml parts from XMLHTTP30 into DOM document
Dim xml_doc as MSXML2.ServerXMLHTTP30
.. initialising omitted for brevity
...
0
votes
2answers
316 views
401 Unauthorised errors when attempting to download ASP page to file
Issue
Msxml2.ServerXMLHTTP keeps returning 401 - Unauthorised errors each time we attempt to read the contents of a file (ASP) from a web server.
Source server is running IIS6, using NTLM integrated ...
0
votes
2answers
394 views
get and post request to a https site using vb6.0
Hi i am using MSXML2.ServerXMLHTTP40 to get and post request to a url.When i post to http site it works fine but when i post to https site it throws me an error stating the operation timed out.I am ...
0
votes
1answer
238 views
Facebook Download photo and ServerXMLHTTP
Hello and thanks in advance. Before to post here i search a lot in the net and here as well.
I have a site that let the user join with their facebook profile so with their permission (FB application) ...
0
votes
2answers
2k views
Setting a timeout for ServerXMLHTTP request
Does anyone know how to set up set up a default action for when a ServerXMLHTTP request times out? I'm using setTimeouts() to set the time out options according to the MSDN site.
Ideally I would ...
0
votes
1answer
407 views
Access denied error with MSXML2.ServerXMLHTTP
I'm receiving an intermittent "msxml3.dll error '80070005' Access is denied." error. The object always posts back to the same domain. I don't quite know why it works sometimes and why it fails other ...
0
votes
1answer
415 views
How to decompress/inflate an XML response from ASP
Can anyone provide some insight into how i'd go about decompressing an XML response in classic ASP. We've been handed some code and asked to get it working:
Set oXMLHttp = ...
0
votes
3answers
1k views
ASP/VBScript ServerXmlHttp Encoding
I'm pulling an RSS feed from a remote location using ServerXmlHttp:
Dim httpRequest
set httpRequest = server.createObject("Msxml2.ServerXMLHTTP.6.0")
httpRequest.open "GET", ...
0
votes
1answer
335 views
xmlHttp, XML request,asp
Just to confirm
When sending XML data with asp to https://www .site.com I am getting
msxml3.dll (0x80072F0C)
A certificate is required to complete client authentication
I Talk to https://www ...
0
votes
1answer
549 views
XML and ServerXMLHTTP problem
Error Type:
msxml3.dll (0x80072F0C)
A certificate is required to complete client authentication
I am sending an XML file to a remote server
putUrl =https://www.myweb.com/test/drhandler.php
...
0
votes
1answer
964 views
ServerXMLHTTP Error: Cannot find window class
I am getting an error using the MsXml.ServerXmlHttp object from JScript under classic ASP when the call is asynchronous. The error message is "cannot find window class"
The environment is: Windows ...
0
votes
1answer
4k views
What is MSXML2.ServerXMLHTTP's default Content-Type?
In my previous question, I was accidentally sending token/value pairs with an text/xml content-type which resulted in nothing being sent. Tim C's insight into that problem was extremely helpful. ...
0
votes
1answer
4k views
receiving xml from another website's call to ServerXMLHTTP post in classic asp
I am writing both sides of an asp-webpage to asp-webpage conversation in which the originating webpage pushs information to the receiving webpage which then processes it and sends back a response. ...