An API catalog service definition for a WebHandler (PASOE, version 11.6+)
A Web Handler is a class that extends the OpenEdge.Web.WebHandler abstract class
and implements one (or more) of the specific request methods: doGet, doPost, etc.
The complete request information is sent to the Web Handler as a WebRequest
object and it's the handler responsibility to write out the complete WebResponse
information (status, cookies, status code and body).
The akera.io implementation of the WebHandler for methods to handle web requests
takes both the request and response objects as input parameters.
The PASOE Web Handlers - taking just the request as input parameter - are supported
the same way as used in PASOE. The handler will have to write the response using the
WebResponseWriter object.
An API catalog service definition for a WebHandler (PASOE, version 11.6+)
A Web Handler is a class that extends the
OpenEdge.Web.WebHandlerabstract class and implements one (or more) of the specific request methods:doGet,doPost, etc.The complete request information is sent to the Web Handler as a
WebRequestobject and it's the handler responsibility to write out the completeWebResponseinformation (status, cookies, status code and body).The akera.io implementation of the
WebHandlerfor methods to handle web requests takes both the request and response objects as input parameters.The PASOE Web Handlers - taking just the request as input parameter - are supported the same way as used in PASOE. The handler will have to write the response using the
WebResponseWriterobject.