Soap.SOAPConn.TSoapConnection.OnBeforeExecute

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnBeforeExecute: TBeforeExecuteEvent read FOnBeforeExecute write FOnBeforeExecute;

C++

__property Soap::Rio::TBeforeExecuteEvent OnBeforeExecute = {read=FOnBeforeExecute, write=FOnBeforeExecute};

Properties

Type Visibility Source Unit Parent
event published
Soap.SOAPConn.pas
Soap.SOAPConn.hpp
Soap.SOAPConn TSoapConnection

Description

Occurs before TSoapConnection sends a method call to the application server for execution.

Write an OnBeforeExecute event handler to examine or alter an encoded method call before it is sent to the server. OnBeforeExecute occurs after the call has been marshaled into a SOAP request packet, but before that SOAP request packet has been sent to the application server.

OnBeforeExecute is assigned as the OnBeforeExecute event handler of an internal remote interfaced object that the SOAP connection uses to communicate with the application server.

See Also