|
||||||||||
|
|
||||||||||
| Related Syntax | Other Library Functions | |||||||||
| function | HttpObjectSetCookieAttribute |
|
Library: omhttp - HTTP support
Include: 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"
| ---- |