Soap.XSBuiltIns.TXMLData.ObjectToSOAP

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function   ObjectToSOAP(RootNode, ParentNode: IXMLNode;  const ObjConverter: IObjConverter; const NodeName, NodeNamespace, ChildNamespace: InvString; ObjConvOpts: TObjectConvertOptions; out RefID: InvString): IXMLNode; override;

C++

virtual Xml::Xmlintf::_di_IXMLNode __fastcall ObjectToSOAP(Xml::Xmlintf::_di_IXMLNode RootNode, Xml::Xmlintf::_di_IXMLNode ParentNode, const Soap::Invokeregistry::_di_IObjConverter ObjConverter, const System::UnicodeString NodeName, const System::UnicodeString NodeNamespace, const System::UnicodeString ChildNamespace, Soap::Invokeregistry::TObjectConvertOptions ObjConvOpts, /* out */ System::UnicodeString &RefID);

Properties

Type Visibility Source Unit Parent
function public
Soap.XSBuiltIns.pas
Soap.XSBuiltIns.hpp
Soap.XSBuiltIns TXMLData

Description

Converts a TXMLData object to its SOAP representation.

The ObjectToSOAP method converts a TXMLData object to its SOAP representation.

RootNode is an ancestor of the generated node to which you can add information about the generated node. The information is constituted as attributes.

ParentNode is the node in the SOAP representation that should act as a parent to the node generated by ObjectToSOAP.

ObjConverter is the interface of the default converter that translates between remotable objects and their SOAP representation. This is the interface to a TOPToSoapDomConvert instance.

Name is the name of the node that is generated.

URI is the URI for the namespace in which Name is defined.

ObjConvOpts are flags that customize the way the node is serialized.

RefID returns a reference ID for the node. This is used if the node is multireferenced.

ObjectToSOAP returns the XML for the newly generated node.

See Also