Returns the prefix of the namespace associated with the current tag in an XML document.
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> = XMLNamespace([<XML document>])
<Result>: : Character string
- Prefix of namespace used for 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, XMLNamespace 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