Web.HTTPApp.IWebAppServices180.HandleRequest

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function HandleRequest: Boolean;

C++

virtual bool __fastcall HandleRequest() = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp IWebAppServices180

Description

Directs the processing of the current request message.

When the Web Broker application receives a request message, it makes the following calls:

1. The InitContext method is called to generate a Web context for the request.

2. HandleRequest is called to generate a response to the request.

3. FinishContext is called to perform any final cleanup.

HandleRequest locates the dispatcher components that handle the request and forwards the request to a dispatcher for processing.

HandleRequest returns true if the request is handled and the response should be sent back to the caller (if it was not already sent). It returns false if the Web Broker application could not handle the request.

See Also