|
|
|
|
|
Saves an XML document in a file. If an XSD description was used, it is automatically used to validate the XML document when saved.
MyXMLDocument is xmlDocument
...
Filter is string = "XML files (*.xml)" + TAB + "*.xml" + CR + ...
"All files (*.*)" + TAB + "*.*"
OutputFile is string = fSelect("", "", "Select an XML file...", ...
Filter, "xml", fselCreate)
IF OutputFile <>"" THEN
XMLSave(MyXMLDocument, OutputFile, XMLDocumentDefault)
IF ErrorOccurred = True THEN
ErrorBuild("An error occurred during backup: %1", ...
ErrorInfo(errFullDetails))
END
END
MyXMLDoc is xmlDocument,description="stream"
MyXMLDoc.rss.Channel[1].Title = gsParamTitle
MyXMLDoc.rss.Channel[1].Link = gsParamSiteAddress
MyXMLDoc.rss.Channel[1].Description = gsParamSiteDescription
MyXMLDoc.rss.Channel[1].Copyright = gsParamCopyright
MyXMLDoc.rss.Channel[1].Webmaster = gsParamContactAddress
MyXMLDoc.rss.Channel[1].Image = gsParamURLSiteImage
MyXMLDoc.rss.Channel[1].Generator = "Easy RSS"
XMLSave(MyXMLDoc, gsPathXMLFile)
XMLSave(MyXMLDoc, gsPathXMLFile_With_Formatting, XMLFormatting)
Sintaxis
XMLSave(<XML document> [, <File name and path>] [, <Options>])
<XML document>: xmlDocument variable xmlDocument variable containing the document to save. This variable can be the result of a call to XMLOpen or it may have been declared and initialized directly. <File name and path>: Optional ANSI or Unicode character string Name and full (or relative) path of text file to create. A UNC path can be used.If this parameter is not specified or if it is set to "" (empty string): - When XMLSave is called for the first time on this document, the XML document is saved to the location specified when it was opened (XMLOpen).
- On subsequent calls to XMLSave, the XML document is saved to the location specified the last time it was saved.
- An error occurs if the XML document was not opened by XMLOpen (opened from a URL, from a string or if the document was created).
<Options>: Optional Integer constant Options for saving the XML document. The possible values are: | | XMLDocumentDefault (default value) | Saves the XML document with a header. | XMLFormatting | Saves the XML document with formatting (indent and carriage returns). | XMLNoHeader | Saves the XML document without header. This constant can be used when the XML document corresponds to a fragment of a more important document, concatenated with other XML documents thereafter. | xvNoValidation | Saves the XML document without taking into account the XSD model specified when describing the XML document.
|
Observaciones When describing an XML document, you have the ability to specified the XSD file that will be used as validation model for the XML file. For example: cMyDoc is xmlDocument <description="person.xsd">
By default, this XSD file is taken into account when the document is saved: document validity is automatically checked before saving the XML document (equivalent to the XMLValidDocument function). If you don't want to perform this validation, simply use the constant xvWithoutValidation. Clasificación Lógica de negocio / UI: Lógica de negocio
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|