Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.5
10.0
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
Statistic
FMM
Blog
Validates XML against schema.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
XML | 8.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example |
---|---|---|
FilePath | Native file path to the file to check. | "/Users/cs/Desktop/test.xml" |
Schema | The schema definition as xml text. With version 10.2 can also be file path. |
$schema |
Returns OK or error.
Validate a file in a folder:
Set Variable [ $r ; Value: MBS( "Process.SetCurrentDirectory"; "/Users/cs/Documents/todo/XML Validate/") ]
Set Variable [ $result ; Value: MBS("XML.ValidateFile"; "test.xml"; XML Validation::Schema) ]
Set Field [ XML Validation::Result ; $result ]
Validate all in one folder:
# set folder
Set Variable [ $r ; Value: MBS( "Process.SetCurrentDirectory"; "/Users/cs/Desktop/XML Validate") ]
#
# validate file
Set Field [ XML Validation::Result ; MBS("XML.ValidateFile"; "test.xml"; "generalInvoiceRequest_450.xsd") ]
#
# folder contains xmldsig-core-schema.xsd, xenc-schema.xsd, generalInvoiceRequest_450.xsd and test.xml
Created 6th March 2018, last changed 22nd April 2020
XML.Validate - ZipFile.CRCFile
Feedback: Report problem or ask question.