ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / XML file functions
  • Properties specific to the description of the xmlNamespace variables
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
The xmlNamespace type is used to handle the XML namespace of a node attribute in an XML document.
The namespace allows you to use in the same XML document attributes with the same name and different definition or several attributes with the same name on a given node.
This type of variable is used by:
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
// Adds into a tag the "xsi" entry and a "xsd" reference in order to get:
// <?xml version="1.0" encoding="UTF-8"?>
// <DocumentTag xmlns:xsi="http://www.w3.org/YourUrl"
// xsi:noNamespaceSchemaLocation="YourFile.xsd">
// Example
// <Next>
// Example for xmlNamespace type
// </Next>
// </DocumentTag>
 
 
MyXMLDoc is xmlDocument
nNamespace is xmlNamespace
nNode is dynamic xmlNode
nNode = MyXMLDoc.DocumentTag
 
MyXMLDoc.DocumentTag = "Example"
nNamespace..Name = "xsi"
nNamespace..URI = "http://www.w3.org/YourUrl"
Add(nNode..NamespaceDeclared, nNamespace)
nNode:noNamespaceSchemaLocation..Value = "YourFile.xsd"
nNode:noNamespaceSchemaLocation..Namespace = nNamespace
 
MyXMLDoc.DocumentTag.Next = "Example for xmlNamespace type"
 
XMLSave(MyXMLDoc, fExeDir() + ["\"] + "test.xml")
ShellExecute(fExeDir() + ["\"] + "test.xml")
Remarks

Properties specific to the description of the xmlNamespace variables

The following properties can be used to handle a xmlNamespace variable:
NameType usedEffect
NameCharacter stringName of the namespace in the XML document.
This name is used in the XML source code to prefix the ambiguous attributes.
URICharacter stringLocation of the definition of the namespace.
AndroidJava Caution: The iteration order is not necessarily the order in which the attributes are declared in the document (in most cases, the attributes are listed in alphabetical order).
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help