Using ServerXMLHTTP Directly | Microsoft Docs

 

Using the ServerXMLHTTP object directly offers much greater procedural control than that of the setProperty method of DOMDocument. Instead of merely retrieving XML responses from a remote sever, the ServerXMLHTTP object allows developers to use the HTTP methods, GET and POST, as well as the ability to handle basic security logons.

Using ServerXMLHTTP to GET XML results from an ASP page

In the following example, ServerXMLHTTP retrieves an XML response from an ASP page over HTTP. By using GET, the example is able to send a request without actually transferring any data to the Web server.

The responseXML property of the objSrvHTTP object contains the XML response from the Web server. The example program writes this response to the browser's output by first informing the browser that the response to be received is XML ("text/xml"). Next, the program passes the response directly to the Response object for displaying onscreen.

Example

<%@language=JScript%>  
<%  
   var objSrvHTTP;  
   objSrvHTTP = Server.CreateObject ("Msxml2.ServerXMLHTTP.6.0");  
   objSrvHTTP.open ("GET","http://someotherserver/respond.asp", false);  
   objSrvHTTP.send ();  
   Response.ContentType = "text/xml";  
   Response.Write (objSrvHTTP.responseXML.xml);  
%>  
  

Using ServerXMLHTTP to POST XML to an ASP page

In the following example, ServerXMLHTTP uses HTTP to send XML data to an Active Server Page (ASP) page. Unlike the preceding example that used GET, this example uses POST. The POST method sends data, along with the request, to the Web server.

As in the previous example, the program writes the response to the browser's output by setting the ContentType to "text/xml" and passing the response to the Response object.

Example

<%@language=JScript%>  
<%  
   var objSrvHTTP;  
   var objXMLDocument;  
   objSrvHTTP = Server.CreateObject ("Msxml2.ServerXMLHTTP.6.0");  
   objXMLDocument = Server.CreateObject ("Msxml2.DOMDocument.6.0");  
  
   objXMLDocument.async= false;  
   objXMLDocument.loadXML ("<msg><id>1</id></msg>");  
  
   objSrvHTTP.open ("POST","http://someotherserver/respond.asp",false);  
   objSrvHTTP.send (objXMLDocument);  
   Response.ContentType = "text/xml";  
   Response.Write (objSrvHTTP.responseXML.xml);  
%>  
  

Using ServerXMLHTTP to POST and Process XML

In the following example, ServerXMLHTTP sends an XML document to an ASP page on a Web server and passes its XML response to a waiting DOMDocument for processing.

Example

<%@language=Jscript%><%  
   var objSrvHTTP;  
   var objXMLSend;  
   var objXMLReceive;  
   objSrvHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.6.0");  
   objXMLSend = Server.CreateObject("Msxml2.DOMDocument.6.0");  
   objXMLReceive = Server.CreateObject("Msxml2.DOMDocument.6.0");  
  
   objXMLSend.async = false;  
   objXMLSend.loadXML ("<msg><id>2</id></msg>");  
  
   objSrvHTTP.open ("POST","http://someotherserver/respond.asp",false);  
   objSrvHTTP.send (objXMLSend);  
   objXMLReceive = objSrvHTTP.responseXML;  
   Response.ContentType = "text/xml";  
   Response.Write (objXMLReceive.xml);  
%>
keywords

 

Using the ServerXMLHTTP object directly offers much greater procedural control than that of the setProperty method of DOMDocument. Instead of merely retrieving XML responses from a remote sever, the ServerXMLHTTP object allows developers to use the HTTP methods, GET and POST, as well as the ability to handle basic security logons.

Using ServerXMLHTTP to GET XML results from an ASP page

In the following example, ServerXMLHTTP retrieves an XML response from an ASP page over HTTP. By using GET, the example is able to send a request without actually transferring any data to the Web server.

The responseXML property of the objSrvHTTP object contains the XML response from the Web server. The example program writes this response to the browser's output by first informing the browser that the response to be received is XML ("text/xml"). Next, the program passes the response directly to the Response object for displaying onscreen.

Example

<%@language=JScript%>  
<%  
   var objSrvHTTP;  
   objSrvHTTP = Server.CreateObject ("Msxml2.ServerXMLHTTP.6.0");  
   objSrvHTTP.open ("GET","http://someotherserver/respond.asp", false);  
   objSrvHTTP.send ();  
   Response.ContentType = "text/xml";  
   Response.Write (objSrvHTTP.responseXML.xml);  
%>  
  

Using ServerXMLHTTP to POST XML to an ASP page

In the following example, ServerXMLHTTP uses HTTP to send XML data to an Active Server Page (ASP) page. Unlike the preceding example that used GET, this example uses POST. The POST method sends data, along with the request, to the Web server.

As in the previous example, the program writes the response to the browser's output by setting the ContentType to "text/xml" and passing the response to the Response object.

Example

<%@language=JScript%>  
<%  
   var objSrvHTTP;  
   var objXMLDocument;  
   objSrvHTTP = Server.CreateObject ("Msxml2.ServerXMLHTTP.6.0");  
   objXMLDocument = Server.CreateObject ("Msxml2.DOMDocument.6.0");  
  
   objXMLDocument.async= false;  
   objXMLDocument.loadXML ("<msg><id>1</id></msg>");  
  
   objSrvHTTP.open ("POST","http://someotherserver/respond.asp",false);  
   objSrvHTTP.send (objXMLDocument);  
   Response.ContentType = "text/xml";  
   Response.Write (objSrvHTTP.responseXML.xml);  
%>  
  

Using ServerXMLHTTP to POST and Process XML

In the following example, ServerXMLHTTP sends an XML document to an ASP page on a Web server and passes its XML response to a waiting DOMDocument for processing.

Example

<%@language=Jscript%><%  
   var objSrvHTTP;  
   var objXMLSend;  
   var objXMLReceive;  
   objSrvHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.6.0");  
   objXMLSend = Server.CreateObject("Msxml2.DOMDocument.6.0");  
   objXMLReceive = Server.CreateObject("Msxml2.DOMDocument.6.0");  
  
   objXMLSend.async = false;  
   objXMLSend.loadXML ("<msg><id>2</id></msg>");  
  
   objSrvHTTP.open ("POST","http://someotherserver/respond.asp",false);  
   objSrvHTTP.send (objXMLSend);  
   objXMLReceive = objSrvHTTP.responseXML;  
   Response.ContentType = "text/xml";  
   Response.Write (objXMLReceive.xml);  
%>

title: Using ServerXMLHTTP Directly | Microsoft Docs
summary:
category: asp
keywords:
link: https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ms766431(v=vs.85)

-->

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Linx
Search Linx by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
There is a qualitative and quantitative difference between a day that begins with a little exercise, a book, meditation, a good meal, a thoughtful walk, and the start of a day that begins with a smartphone in bed.
Unknown
Random CSS Property

border-right

The border-right shorthand CSS property sets all the properties of an element's right border.
border-right css reference