APPLICATION (for HTTP)

This element contains a list of those HEADER elements defining the communication carried on the HTTP protocol between web applications and the client.

Syntax

<HTTP>
  ...
  <APPLICATION>
     [<HEADER>...</HEADER>][...]
  </APPLICATION>
  ...
</HTTP>

Child elements

The APPLICATION element may contain zero to many HEADERelements.

Usage

You use this element to specify a list of HEADER elements defining the communication carried on the HTTP protocol between web application and the client.

Example usage

<INTERFACE>
  <ROOT_URL_PREFIX>$(res.rooturlprefix)</ROOT_URL_PREFIX>
  <REPORT_VIEWER_DIRECTORY>$(res.gredir)/viewer</REPORT_VIEWER_DIRECTORY>
   <GBC_LOOKUP_PATH>$(res.gbc.lookup.path)</GBC_LOOKUP_PATH>
    <HTTP>
      <APPLICATION>
       <HEADER Name="X-XSS-Protection">1; mode=block</HEADER>
        <HEADER Name="X-Content-Type-Options">nosniff</HEADER>
        <HEADER Name="X-Frame-Options">SAMEORIGIN</HEADER>
      </APPLICATION>
      </SERVICE>
    </HTTP>
</INTERFACE>

Parent elements

This element is a child of the HTTP (Common) element.