ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / XML file functions
  • Saving several positions
  • XML functions and threads
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
XMLSavePosition (Function)
In french: XMLSauvePosition
Stores the current position in the XML document. This enables you to temporarily suspend the current process in order for the XML document to be used somewhere else (to perform checks for example). The saved context can be restored by XMLRestorePosition. Then, the main process can continue.
Note The function XMLSavePosition function saves the current filter (the filter is implemented with the XMLFind function).
WEBDEV - Server codePHP
IF XMLDocument("MonDocXML", CodeXML) = True THEN
	// Recherche des liens
	XMLFind("MonDocXML", "a", XMLTag)
	WHILE XMLFound("MonDocXML") = True
		IF XMLChildExist("MonDocXML", XMLAttribute) = True THEN
			LaPositionXML is int = XMLSavePosition("MonDocXML")
			XMLChild("MonDocXML")
			Trace(XMLData("MonDocXML")) 
			// Traitement
			XMLRestorePosition("MonDocXML", LaPositionXML, XMLRPFilter) 
		END
		// Elément suivant dans la recherche
		XMLNext("MonDocXML")
	 END
END
Syntax
<Result> = XMLSavePosition(<XML document>)
<Result>: Integer
  • Number of the position that was saved,
  • -1 if an error occurred.
<XML document>: Character string
Name of the XML document used. This document contains the XML code to study and it was created by XMLDocument.
Remarks

Saving several positions

XMLSavePosition can be used several times to save several positions in the XML file. To do so, assign the position to different integer variables. Then, these different positions can be restored by XMLRestorePosition.

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
Component: wd300xml.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help