|
|
|
|
|
XMLFindNamespaceByURI (Function) In french: XMLChercheNamespaceParURI Finds an XML namespace from its URI (Universal Resource Identifier) in a node and in the parents of this node.
gcXMLDocument is xmlDocument gcXMLDocument = XMLOpen("c:\temp\file.xml", fromFile) Â cNode is xmlNode = gcXMLDocument..RootNode[1] cNamespace is xmlNamespace = XMLFindNamespaceByURI(cNode, "http://schemas.xmlsoap.org/wsdl/") Â IF ErrorOccurred = True THEN Info("The namespace was not found") ELSE Info("Namespace found: ", cNamespace.Name) END
Syntax
<Result> = XMLFindNamespaceByURI(<Source node> , <URI>)
<Result>: xmlNamespace variable xmlNamespace variable corresponding to the namespace of sought URI. <Source node>: xmlNode variable Name the xmlNode variable that corresponds to the node of the XML document from which the namespace must be searched. <URI>: Unicode string URI of the namespace to find. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|