HTTP_COOKIES / HTTP_COOKIE / VARIABLE / CONSTANT

The HTTP_COOKIES element contains any HTTP cookie definitions for an application. The main goal of cookies is to keep a state, through session variables, between two runs of an application by the same user. The number of cookies associated with an application should be constant.

The HTTP_COOKIE element takes a mandatory Id attribute and four optional attributes Expires, Domain, Secure and HttpOnly.

Child elements

The HTTP_COOKIE element may contain the following child elements:

  1. Zero or more VARIABLE elements.

  2. Zero or more CONSTANT elements.

Each VARIABLE or CONSTANT element is defined by a mandatory identifier and an optional value.

Syntax

<HTTP_COOKIES>
  <HTTP_COOKIE Id="cid" [Expires="endTime" | Domain="mydomain" | 
   Secure="TRUE|FALSE" | HttpOnly=""]>
    <VARIABLE Id="varId">val</VARIABLE> [...]
    <CONSTANT Id="cstId">cst</CONSTANT> [...]
  <HTTP_COOKIE> [...]
</HTTP_COOKIES>
Note:
  1. cid is the cookie name.

  2. endTime specifies the cookie expiration in "Day, DD-Mon-YYYY HH:MM:SS GMT" format. You can set a relative date with "X" or "+X" where X represents a number of seconds. "X" will fix the cookie date only at the creation time and "+X" will generate a new date for the cookie on each HTTP request.

  3. mydomain is the domain name the cookie is restricted to.

  4. varId is the variable name and val its value.

  5. cstId is the constant name and cst its value.

Example

<!-- secure persistent cookie with default variable value and constant value -->
<HTTP_COOKIES>
  <HTTP_COOKIE Id="cookie3" Expires="Wdy, DD-Mon-YYYY HH:MM:SS GMT" 
   Domain="www.domain.com" Secure="TRUE" HttpOnly="TRUE">
    <VARIABLE Id="var7" />
    <VARIABLE Id="var8">Initial value</VARIABLE>
    <CONSTANT Id="constant1">A value</CONSTANT>
  </HTTP_COOKIE>
</HTTP_COOKIES>

For more information on HTTP cookies, refer to Session Variables and Cookies.