Soap.SOAPDomConv.TSOAPDOMProcessor.DefaultProcessHeader

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DefaultProcessHeader(HeaderNode: IXMLNode; var Handled, AbortRequest: Boolean); virtual;

C++

virtual void __fastcall DefaultProcessHeader(Xml::Xmlintf::_di_IXMLNode HeaderNode, bool &Handled, bool &AbortRequest);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.SOAPDomConv.pas
Soap.SOAPDomConv.hpp
Soap.SOAPDomConv TSOAPDOMProcessor

Description

Handles the interpretation of a SOAP header when no processor can be found.

DefaultProcessHeader is called to provide a default interpretation of a SOAP header when it is not processed by one of the processors that FindHeaderProcessor returns.

HeaderNode is the interface of the DOM representation of the SOAP header to be processed.

Handled returns true if DefaultProcessHeader handles the header node.

AbortRequest returns true if DefaultProcessHeader determines that the SOAP header can't be handled and that this results in an inability to interpret the entire SOAP request.

Note: DefaultProcessHeader is supplied for backward compatibility. Headers are handled differently, using lists of TSOAPHeader descendants that are supplied as parameters to methods in descendant classes.

See Also