Questions tagged [serverxmlhttp]

Object Model component on Windows systems that provides methods and properties that enable you to establish an HTTP connection between files or objects on different Web servers. It's part of MSXML services.

Can be used in .Net applications or in WSH script through MSXML2.ServerXMLHTTP ActiveX objects.

Documentation: MSDN

127 questions
0
votes
1 answer

Reading a ServerXMLHTTP request in Classic ASP

I'm using Msxml2.ServerXMLHTTP.6.0 to POST/GET data from Twitters API. Everything is working fine apart from one API function. I need to see what I'm sending to api.twitter.com so I can fix it. The script was written by someone else and is very long…
user2597933
  • 63
  • 10
0
votes
1 answer

IServerXMLHTTPRequest on HTTPS

I am trying to implement a c++ application that will access an HTTPS server using IServerXMLHTTPRequest. My current code is: CComPtr xmlHttp; HRESULT hr = xmlHttp.CoCreateInstance(__uuidof(ServerXMLHTTP)); …
Ray
  • 627
  • 1
  • 7
  • 19
0
votes
1 answer

IServerXMLHTTPRequest vs WinHTTP Performance

I am trying to compare IServerXMLHTTPRequest and WinHTTP in regards to performance. I would like to know: What is the maximum limit of the data/file that can be sent? What is the transfer rate if the file to be sent is the maximum limit?
Ray
  • 627
  • 1
  • 7
  • 19
0
votes
2 answers

ServerXMLHTTP Connection Issues

I'm trying to build a webpage in classic ASP to check the status of a series of URLs. My code is as follows: Function TestSite(sURL) UserAgent = "Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1)" Set poster =…
0
votes
3 answers

Using regex in Classic ASP to get content of specific elements

So I am loading some remote content and need to use regex to isolate the the content of some tags. set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.open "GET", url, false xmlhttp.setRequestHeader "Content-Type",…
Chris Dowdeswell
  • 858
  • 2
  • 11
  • 25
-1
votes
1 answer

classic asp multiple server side asynchronous callings

I have a classic asp page that when running do a lengthy check repeatedly calling 20 times the same vbscript function each time with different argument. The function returns either true or false (depending on the argument). Each time the function…
-1
votes
2 answers

MVC 4 - Loading Message or Graphic

Is it possible to display a loading message or graphic while processing a function? I currently have a controller which carries out all the functionality before returning the view. However as part of the function includes a ServerXMLHTTP process, it…
iggyweb
  • 2,373
  • 12
  • 47
  • 77
1 2 3
8
9