Soap.WSDLPub.TWSDLHTMLPublish.ServiceInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ServiceInfo(Sender: TObject; Request: TWebRequest;  Response: TWebResponse; var Handled: Boolean);

C++

void __fastcall ServiceInfo(System::TObject* Sender, Web::Httpapp::TWebRequest* Request, Web::Httpapp::TWebResponse* Response, bool &Handled);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.WSDLPub.pas
Soap.WSDLPub.hpp
Soap.WSDLPub TWSDLHTMLPublish

Description

Responds to requests that are otherwise not handled by the application.

The Web Module (or Web Dispatcher) calls ServiceInfo when there are no other components in the application to handle an incoming request message. ServiceInfo responds by generating a default Web page that includes a link to the WSDL documents.

Sender is not used in the ServiceInfo method.

Request contains information about the incoming request message.

Response is a TWebResponse object that is filled out to indicate the response that should be returned to the Web client.

Handled always returns true, indicating that ServiceInfo successfully generated a response.

See Also