Soap.WSDLItems.TWSDLItems.GetSoapActionList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetSoapActionList(const BindingName: DOMString; ActionList: TDOMStrings;  QualifiedNames: Boolean; var SOAPVersion: TSOAPVersion);

C++

void __fastcall GetSoapActionList(const System::UnicodeString BindingName, Soap::Wsdlintf::TDOMStrings* ActionList, bool QualifiedNames, Soap::Wsdlintf::TSOAPVersion &SOAPVersion);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.WSDLItems.pas
Soap.WSDLItems.hpp
Soap.WSDLItems TWSDLItems

Description

Fills a list with the soapAction attributes for all operations on a specified SOAP binding.

Call GetSoapActionList to retrieve the value of the soapAction attribute of each operation of a specified SOAP binding. Each soapAction is added as a string with the format

OperationName = soapActionName

where OperationName is the name of the operation with which the soapAction attribute is associated.

BindingName is the name of the binding associated with the port type whose operations are retrieved along with their SOAP actions.

OperationNames is an existing TWideStrings object to which the names of all operations on the binding's port type are added.

QualifiedNames specifies whether the operation names should be qualified using the target namespace prefix.

Note: GetSoapActionList does not clear the WideString list before adding the names of the operations and their corresponding SOAP actions.

See Also