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 HEADER elements.

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.

Starting with GAS 3.00 you can set custom HTTP headers for Web applications and Web services. This configuration takes place in the HTTP element of the INTERFACE_TO_CONNECTOR element of the GAS configuration file.

Example usage

<INTERFACE_TO_CONNECTOR>
   <HTTP>
     <SESSION_COOKIE Secure="FALSE"> </SESSION_COOKIE>
     <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>
      <HEADER/>
     </SERVICE>
   </HTTP>
</INTERFACE_TO_CONNECTOR>

Parent elements

This element is a child of the HTTP element.