Soap.InvokeRegistry.TInvokableClassRegistry.RegisterAllSOAPActions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RegisterAllSOAPActions(Info: PTypeInfo; const AllSOAPActions: InvString);

C++

void __fastcall RegisterAllSOAPActions(System::Typinfo::PTypeInfo Info, const System::UnicodeString AllSOAPActions);

Properties

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

Description

Supplies a set of SOAP Action headers to use for an already-registered interface.

RegisterDefaultSOAPAction associates a registered invokable interface with a set of SOAP Action headers. A default SOAP Action header is generated (based on the namespace) when you register the interface by a call to the RegisterInterface method. RegisterAllSOAPActions lets you supply or change the SOAP Action header to a set of headers after the interface is already registered.

Info is the runtime type information (RTTI) for the interface for which you are supplying a set of SOAP Action headers.

AllSOAPActions is a string that includes the SOAP headers to use for calls to the interface that Info identifies. The individual header strings are delimited by a character that is given by the first character in the string.

See Also