HTTP Status Codes
Donnerstag, 13. Juni 2019
10:10
Erklärung zu Analyse :
Key | Description | Possible values(s) |
---|---|---|
Accept-Encoding | This request header indicates the types of data encodings that are accepted by the browser. The value often indicates whether the browser is able to decode compressed resources or not, and if so, which type of compression.This header is described in more detail in part 16. | gzip, deflate |
Connection | This header indicates whether if the connection can stay open for a next request. Opening a connection costs precious time, so it is never a good idea to open and close a connection with each request. Since HTTP/1.1 the default value is Keep-Alive but HTTP/1.1 also comes with a newer value, pipelining. | Keep-Alive, pipelining |
Cookie | If cookies are enabled on the browser, this header contains the cookies applicable for the host. | |
User-Agent | This request header mentions the type of the browser and its version. This can be handy for the server if different rendering need to be applied based on the requesting browser. | Mozilla/5.0 or Internet Explorer or Chrome |
Host | This response header contains the URL of the server. | |
Expires | This header is issued by the server to indicate until when a resource can be stored in the cache. As long as this date is not expired, the resource will be used from cache. As you will see in further articles, the availability of other headers can take precedence over the Expires header forcing the browser to execute a conditional GET.This is described in more detail in part 11 and part 13. | Date/time value |
Cache-Control | This response header is issued by the server to indicate how long a resource will remain valid.Cache-Control can have the following values:
Cache-Control uses the max-age directive to specify how long a component can be cached. It defines the freshness window in seconds. If less than max-age seconds have passed since the component was requested, the browser will use the cached version, thus avoiding an additional HTTP request. You could specify both response headers, Expires and Cache-Control max-age. If both are present, the HTTP specification dictates that the max-age directive will override the Expires header. You can find more details in more detail in part 11. |
public, max-age=86400orprivate, max-age=0 |
Last-Modified | The Last-Modified date is an HTTP response header that indicates when the requested resource was last modified. Read more about this in part 11 and part 12. | Date/time value |
If-Modified-Since | This is a request header that is used to ask the server to validate the requested resource. The date in this header will be the Last-Modified date that was received with the previous request.If the resource was modified since this date, the server will respond with a 200 OK status code and send the resource in the body; if the resource was not modified since this date, the server will respond with a 300 Not Modified status code to indicate that the browser can use the resource from its cache.More on this in part 11. | Date/time value |
ETag | Entity tags (ETags) are a mechanism that web servers and browsers use to validate cached components. ETags provide another way to evaluate and determine whether the component in the browser’s cache still matches the component or entity on the server.SharePoint has a specific way to calculate ETags. You can read more about this in part 13. | "11713e51210ce1:0" |
If-None-Match | This is a request header that is used to ask the server to validate the requested resource. The value in this header will be the ETag that was received with the previous request.If the resource was modified since last request, the server will respond with a 200 OK status code and send the resource in the body; if the resource was not modified since this date, the server will respond with a 300 Not Modified status code to indicate that the browser can use the resource from its cache.More on this in part 11. | "11713e51210ce1:0" |
Referer | This request header contains the URL of the page that contained the link the user is currently following to get to the current page. |
Key | Description | Possible values(s) |
---|---|---|
Server | This response header indicates the type of server that is used to host the web application. | Microsoft-IIS/7.5 |
X-Powered-By | This response header indicates the web technology that is used to develop the web site. | ASP.NET |
MicrosoftSharePointTeamServices | This response header indicates the version of SharePoint installed on the servers. | 14.0.0.6029 |
ResourceTag | This response header contains a guid that references to a document. In fact, it is the ETag prefixed with RT:. It is of no use at all. | RT:{F20AB0ED-A8A7-4BEC-B281-22E283EFCD97} |
SPRequestGuid | In general, you’ll find this response header on the first request where the page is requested. This GUID is the Log Correlation Id that you can use to go through the SharePoint log files to look for errors with that same GUID. | f525a4a5-cd1a-4f9d-8c35-cba0089e3e60 |
X-SharePointHealthScore | This response header returns the health score of the server. It is calculated based on a number of performance counters. It is also related with the throthling mechanism in SharePoint 2010. A value higher than zero is an indication for the load balancer to redirect requests to other web front-ends or to queue GET requests. You can read more about this header in a post of Michel Barneveld. |
0 |