AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos XML
  • Using a tag associated with a namespace
  • XML functions and threads
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Returns the URI of the namespace associated with the current tag in an XML document.
Ejemplo
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()
Sintaxis
<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.
Observaciones

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.
Clasificación Lógica de negocio / UI: Lógica de negocio
Componente: wd300xml.dll
Versión mínima requerida
  • Versión 10
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

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