Soap.InvokeRegistry.TInvokableClassRegistry.RegisterUDDIInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RegisterUDDIInfo(Info: PTypeInfo; const Operator: String; const BindingKey: string);

C++

void __fastcall RegisterUDDIInfo(System::Typinfo::PTypeInfo Info, const System::UnicodeString Operator, const System::UnicodeString BindingKey);

Properties

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

Description

Registers the location of the UDDI description that can be used to import the location of a Web Service.

Typically, applications do not need to call RegisterUDDIInfo. This method is called internally when a registered interface is imported using the UDDI browser. It associates the location of the imported UDDI entry with a registered interface so that the application can later provide fail-over support by re-fetching the location of the Web Service.

Info is the runtime type information (RTTI) from a registered invokable interface. The interface must have been previously registered by a call to the RegisterInterface method.

Operator is the URL of the UDDI registry that was used to import the interface definition.

BindingKey is the unique identifier for the TModel that describes the Web Service to which the interface belongs.

See Also