|
|
Options | Name | Purpose | |||||
---|---|---|---|---|---|---|---|
|
LONGCHAR GetContextValue (character) |
/* Get a value from the request context
@param character The name context property name
@return longchar The content property value */ |
|||||
|
OpenEdge.Net.HTTP.Cookie GetCookie (character) |
/** Returns a cookie by name from this message. Typically
returns the first cookie it finds by name, oif more than
one exist
@param character The cookie's name to check
@return Cookie The (first) cookie found by name */ |
|||||
|
CHARACTER GetPathParameter (character) |
/* Get the parameter value that corresponds to the defined URI mapping
that invoked the handler for this request
Example:
URI mapping defined in openedge.properties /customers/{custname}/orders/{ordernum}
Requested URI /customers/Andersen/orders/7
GetPathParameter("custname") will return "Andersen"
GetPathParameter("ordernum") will return "7"
@param character name defined with curly braces in URI mapping
@return character The path parameter value */ |
|||||
|
LOGICAL HasCookie (character) |
/** Indicates whether a cookie exists for this message
@param character The cookie's name to check
@return logical TRUE if this message contains the cookie */ |
|||||
|
RemoveCookie (character) |
/** Removes cookies from this message for a given name
@param character The name of the cookie(s) to remove. */ |
Options | Name | Purpose | |||||
---|---|---|---|---|---|---|---|
|
CHARACTER ContextNames |
/* Returns a list of all context property names */ |
|||||
|
CHARACTER DefaultCookieDomain |
/* Returns the default cookie domain */ |
|||||
|
CHARACTER DefaultCookiePath |
/* Returns the default cookie path */ |
|||||
|
CHARACTER LocalAddress |
/* IP address of the interface on which the request was received */ |
|||||
|
CHARACTER LocalHost |
/* Host name of the interface on which the request was received */ |
|||||
|
INTEGER LocalPort |
/* Port number of the interface on which the request was received */ |
|||||
|
CHARACTER PathInfo |
/* The URL after the TransportPath. Does not include the query. */ |
|||||
|
CHARACTER PathParameterNames |
/* Returns a comma-delimited list of path parameter names, for URI mappings */ |
|||||
|
CHARACTER RemoteAddress |
/* IP address of the client or last proxy that sent the request */ |
|||||
|
CHARACTER RemoteHost |
/* Host name the client or the last proxy that sent the request */ |
|||||
|
INTEGER RemotePort |
/* Port of the client or last proxy that sent the request */ |
|||||
|
CHARACTER RemoteUser |
/* Login of the user making this request, or null if not authenticated */ |
|||||
|
CHARACTER ResolvedTransportPath |
/* The real path to the part of the URL specified by TransportPath */ |
|||||
|
CHARACTER ServerSoftware |
/* Return the server software */ |
|||||
|
CHARACTER TransportPath |
/* The part of this request's URL that specifies the OE transport */ |
|||||
|
CHARACTER UriTemplate |
/* Returns the URI template used to find the handler for this request. May be empty */ |
|||||
|
CHARACTER WebAppPath |
/* Portion of request URI that indicates the web application. */ |
Top
LONGCHAR GetContextValue (character)
|
||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
OpenEdge.Net.HTTP.Cookie GetCookie (character)
|
||||||||||||||||||||||||||||||
CHARACTER GetPathParameter (character)
|
||||||||||||||||||||||||||||||
LOGICAL HasCookie (character)
|
||||||||||||||||||||||||||||||
RemoveCookie (character)
|
CHARACTER ContextNames
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CHARACTER DefaultCookieDomain
|
|||||||||||
CHARACTER DefaultCookiePath
|
|||||||||||
CHARACTER LocalAddress
|
|||||||||||
CHARACTER LocalHost
|
|||||||||||
INTEGER LocalPort
|
|||||||||||
CHARACTER PathInfo
|
|||||||||||
CHARACTER PathParameterNames
|
|||||||||||
CHARACTER RemoteAddress
|
|||||||||||
CHARACTER RemoteHost
|
|||||||||||
INTEGER RemotePort
|
|||||||||||
CHARACTER RemoteUser
|
|||||||||||
CHARACTER ResolvedTransportPath
|
|||||||||||
CHARACTER ServerSoftware
|
|||||||||||
CHARACTER TransportPath
|
|||||||||||
CHARACTER UriTemplate
|
|||||||||||
CHARACTER WebAppPath
|
Progress® OpenEdge® Release 11.7