XMLHttpRequest getAllResponseHeaders() Method
Complete XMLHttpRequest Object Reference
Definition and Usage
The getAllResponseHeaders() method gets a string containing all response
headers of the XMLHttpRequest object.
A response header contains file information like length, server-type,
content-type, date-modified, etc.
Syntax
|
xmlHttp.getAllResponseHeaders() |
Example
The following code outputs all response headers in a HTML element with
id="headers":
Example
<html>
<body>
<span id="headers"></span>
<script type="text/javascript">
xmlhttp=null;
if (window.XMLHttpRequest)
{// code for Firefox, Mozilla, IE7, etc.
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp!=null)
{
xmlhttp.onreadystatechange = function()
{
if(xmlhttp.readyState == 4)
{
x=xmlhttp.getAllResponseHeaders();
document.getElementById("headers").innerHTML=x;
}
}
xmlhttp.open("GET", "note.xml", true);
xmlhttp.send(null);
}
else
{
alert("Your browser does not support XMLHTTP.");
}
</script>
</body>
</html>
|
Output should be something like this (browser dependant):
Content-Length: 195 Content-Type: text/xml
ETag: "b34ba3751251c81:4cd" X-Powered-By: ASP.NET
MicrosoftOfficeWebServer: 5.0_Pub
Last-Modified: Mon, 07 Jan 2008 09:48:30 GMT
|
Try it yourself »
|
Complete XMLHttpRequest Object Reference

Need an easy way to get data into XML, or transform XML to another format?
MapForce lets you map XML data to/from any combination of XML, database, flat file, Excel 2007, XBRL, or Web services data.
Then it transforms data instantly or auto-generates royalty-free data integration code for recurrent conversions.
New features in Version 2010!
Download a free, fully functional 30-day trial to experience the following features:
- Easy-to-use, graphical data mapping interface
- Instant data transformation
- XSLT 1.0/2.0 and XQuery code generation
- Java, C#, and C++ code generation
- Advanced data processing functions
- Support for all major relational databases including SQL Server, IBM DB2, Oracle, and more
- Visual Studio & Eclipse integration
Download a fully-functional trial today!
|
|
|
|