Soap.InvokeRegistry.TInvokableClassRegistry.GetActionURIOfIID

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetActionURIOfIID(const AGUID: TGUID): string;

C++

System::UnicodeString __fastcall GetActionURIOfIID(const GUID &AGUID);

Properties

Type Visibility Source Unit Parent
function public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TInvokableClassRegistry

Description

Returns the SOAP Action header associated with the interface with a specified GUID.

Typically, applications do not need to call GetActionURIOfIID. This method is called by remote interfaced objects (THTTPRIO) when generating the SOAP Action header of messages that call a method on a registered interface.

AGUID is the globally unique identifier (GUID) of the interface to call. The interface must be previously registered by a call to the RegisterInterface method.

GetActionURIOfIID returns the string that should appear as the SOAP Action header on request messages to that interface.

See Also