|
|
|
Clear ()
|
/* Clears (empties) the entire handler cache. */
|
|
|
|
INTEGER HandleRequest (character)
|
/* Handles a web request. A customer can specify a different handler for
each application. If this is the first request for this handler or the
handler is invalid, an instance of it is created.
The HandleRequest() method is then invoked.
@param character The name of the customer registered webspeed handler
@return integer An HTTP status code. Zero means that the webhandler has taken care of any errors. A non-zero value
means that the PASOE webapp's error handling will return a standard page for the error */
|
|
|
|
Progress.Web.IWebHandler InvokeHandler (character)
|
/* Invokes/instantiates a webhandler
@param character The webhandler name
@return IWebHandler A usable webhandler instance */
|
|
|
|
LOGICAL Release (character)
|
/* Releases the specified handler from the cache. This lets it be cleaned up/GC'ed.
@param character The handler to release.
@return true if the instance was found and released. otherwise false. */
|