SERVICE (for HTTP)

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

Syntax

<SERVICE>
   [<HEADER>...</HEADER>][...]
</SERVICE>

Child elements

The SERVICE element may contain zero to many HEADER elements.

Usage

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.

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

Example usage

<INTERFACE_TO_CONNECTOR>
   ...
   <HTTP>
     <SESSION_COOKIE Secure="true"> </SESSION_COOKIE>
     <APPLICATION>
       <HEADER/>
     </APPLICATION>
     <SERVICE>
          <HEADER/>
      </SERVICE>
   </HTTP>
</INTERFACE_TO_CONNECTOR>

Parent elements

This element is a child of the HTTP element.