ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / XML file functions
  • Using a tag associated with a namespace
  • XML functions and threads
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
XMLNamespaceURI (Function)
In french: XMLNamespaceURI
Returns the URI of the namespace associated with the current tag in an XML document.
Example
MyDoc is string
MyDoc = fLoadText("Example.xml")
XMLDocument("example", MyDoc)
IF ErrorOccurred = True THEN
Error("The file is not in XML format")
RETURN
END
// Position on the first tag in the file
IF XMLFirst() = True THEN
IF XMLNamespace() <> "" THEN
Info("The prefix used for the namespace is: " + XMLNamespace(), ...
"The corresponding URI is: " + XMLNamespaceURI())
ELSE
IF ErrorOccurred = True THEN
Info("The element read is not a tag")
  ELSE
Info("The tag contains no namespace")
  END
  END
END
 
XMLClose()
Syntax
<Result> = XMLNamespaceURI([<XML document>])
<Result>: : Character string
  • URI of the namespace associated with the current tag,
  • Empty string (""):
    • if the tag does not have a naming prefix.
    • if the XML document is not positioned on a tag. The ErrorOccurred variable is set to True.
<XML document>: : Optional character string
Name of XML document to use. This document contains the XML code and it was created by XMLDocument. If this parameter is not specified, XMLNamespaceURI applies to the last XML document used in the current thread.
Remarks

Using a tag associated with a namespace

XML functions and threads

If your application uses threads, the XML document is shared between all these threads. For more details on threads, see Managing threads.
Business / UI classification: Business Logic
Component: wd290xml.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help