Processes an incoming HTTP request
Source position: fpweb.pp line 142
public procedure TCustomFPWebModule.HandleRequest( |
ARequest: TRequest; |
AResponse: TResponse |
); override; |
ARequest |
|
The HTTP request to process |
AResponse |
|
The HTTP response to generate |
Main request handling method that processes incoming HTTP requests. This method coordinates session management, action execution, template processing, and response generation.
The method calls various hooks in sequence: BeforeRequest, OnRequest, action processing, template processing, and AfterResponse.
May raise EFPWebError if the request cannot be handled.
|
Event called before request processing |
|
|
Event called for request processing |
|
|
Event called after response processing |