ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / XML file functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Finds an XML namespace from its URI (Universal Resource Identifier) in a node and in the parents of this node.
Example
gcDocumentXML is xmlDocument
gcDocumentXML = XMLOpen("c:\temp\fichier.xml", fromFile)

cNoeud is xmlNode = gcDocumentXML..RootNode[1]
cNamespace is xmlNamespace = XMLFindNamespaceByURI(cNoeud, "http://schemas.xmlsoap.org/wsdl/")

IF ErrorOccurred = True THEN
	Info("Le namespace n'a pas été trouvé")
ELSE
	Info("Namespace trouvé : ", 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
Component: wd300xml.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help