Example Analysis of HTTP request in XML
This article mainly shows you the "sample analysis of HTTP requests in XML", which is easy to understand and well-organized. I hope it can help you solve your doubts. Let the editor lead you to study and learn the article "sample analysis of HTTP requests in XML".
If you use IE5.0 or later browsers, you can get XML data from the server through HTTP requests.
Browser request
Through the browser, you can send a HTTP request to obtain XML data from the server:
Var objHTTP = new ActiveXObject ("Microsoft.XMLHTTP") objHTTP.Open ('GET','httprequest.asp',false) objHTTP.Send ()
The following code displays the returned data from the server in the browser:
Document.all ['A1']. InnerText= objHTTP.statusdocument.all ['A2']. InnerText= objHTTP.statusTextdocument.all [' A3']. InnerText= objHTTP.responseText
Interaction with the server
You can "interact" with the server through HTTP requests.
Use XML to interact with the server
We "fabricated" the following ASP code on the server side to interoperate:
So, no matter what you ask, the answer is always 12 years. In real life, you have to write a lot of code to analyze the problem and respond to the correct answer.
The above is all the content of the article "sample Analysis of HTTP requests in XML". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!