|        | |||||
|  | |||||
| function | HttpObjectSetCookieAttribute | ||||
| Related Syntax | Other Library Functions | 
| Library: HTTP Include: omtcp.xin, omhttp.xin | 
  define function HttpObjectSetCookieAttribute
                 modifiable  stream HttpObject
     for         value       stream CookieName
     attribute   value       stream AttrName
     to          value       stream AttrValue
This function sets a named attribute value for a cookie header in an HTTP request or response object. If a nonexistent cookie name is specified, the HTTP object will be in error. Usually, HttpObjectSetCookieAttribute is called in a server program.
Input arguments:
Example:
  ; HttpObjectSetCookieAttribute
  local HttpRequest my-Request
  local HttpResponse my-Response
  HttpObjectSetCookieAttribute my-Request
     for "DocUserID" attribute "Domain" to "www.omnimark.com"
  HttpObjectSetCookieAttribute my-Response
     for "DocUserID" attribute "Domain" to "www.omnimark.com"
| ---- |