|
|
|
|
|
- Using a tag associated with a namespace
- XML functions and threads
XMLNamespaceURI (Function) In french: XMLNamespaceURI Returns the URI 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> = 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
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|