AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos XML
  • 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).
Versión mínima requerida
  • Versión 15
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local