Oracle® Application Server PL/SQL Web Toolkit Reference
10g Release 2 (10.1.2) B15896-01 |
|
Previous |
Next |
The owa_cookie package contains subprograms that send and retrieve HTTP cookies from the client's browser. Cookies are opaque strings sent to the browser to maintain state between HTTP calls. State can be maintained throughout the client's sessions, or longer if an expiration date is included. Your system date is calculated with reference to the information specified in the owa_custom package.
owa_cookie.cookie data type - data type to contain cookie name-value pairs.
owa_cookie.get function - gets the value of the specified cookie.
owa_cookie.get_all procedure - gets all cookie name-value pairs.
owa_cookie.remove procedure - removes the specified cookie.
owa_cookie.send procedure - generates a ""Set-Cookie" line in the HTTP header.
Note: All HTTP headers must be in English. If the headers are generated from the database, verify they are created in the English language. |
Since the HTTP standard allows cookie names to be overloaded (that is, multiple values can be associated with the same cookie name), this is a PL/SQL RECORD holding all values associated with a given cookie name.
Type vc_arr is table of varchar2(4000) index by binary_integer.
This function returns the values associated with the specified cookie. The values are returned in a owa_cookie.cookie data type.
This procedure returns all cookie names and their values from the client's browser. The values appear in the order in which they were sent from the browser.
Table 3-3 owa_cookie.get_all procedures
Properties | Definitions |
---|---|
Syntax: |
owa_cookie.get_all( names out vc_arr, vals out vc_arr, num_vals out integer); |
Parameters: |
names - the names of the cookies. vals - the values of the cookies. num_vals - the number of cookie-value pairs. |
Generates: |
Arrays of the names and values in the order received, and the count of the combinations. |
This procedure forces a cookie to expire immediately by setting the "expires" field of a Set-Cookie line in the HTTP header to "01-Jan-1990". This procedure must be called within the context of an HTTP header.
Table 3-4 owa_cookie.remove procedure
Properties | Definitions |
---|---|
Syntax: |
owa_cookie.remove( name in varchar2, val in varchar2, path in varchar2 DEFAULT NULL); |
Parameters: |
name - the name of the cookie to expire. value - the value of the cookie. path - currently unused. |
Generates: |
Set-Cookie: <name>=<value> expires=01-JAN-1990 |
This procedure generates a Set-Cookie line, which transmits a cookie to the client. This procedure must occur in the context of an HTTP header.
Table 3-5 owa_cookie.send procedure
Properties | Definitions |
---|---|
Syntax |
owa_cookie.send( name in varchar2, value in varchar2, expires in date DEFAULT NULL, path in varchar2 DEFAULT NULL, domain in varchar2 DEFAULT NULL, secure in varchar2 DEFAULT NULL); |
Parameters: |
name -the name of the cookie. value - the value of the cookie. expires - the date at which the cookie will expire. path - the value for the path field. domain - the value for the domain field. secure - if the value of this parameter is not NULL, the "secure" field is added to the line. |
Generates: |
Set-Cookie: <name>=<value> expires=<expires> path=<path> domain=<domain> secure |