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.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
XML.Validate
Validates XML against schema.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| XML | 8.1 | Yes | Yes | Yes | Yes | Yes |
MBS( "XML.Validate"; XML; Schema { ; Flags } ) More
Parameters
| Parameter | Description | Example | Flags |
|---|---|---|---|
| XML | The XML to process. Can be XML as text or the reference returned by XML.Parse function, so you can make several times changes to the XML without parsing it each time. |
"<test>Hello</test>" | |
| Schema | The schema definition. | $schema | |
| Flags | Various Flags. Add 1 to ignore errors in xml and continue parsing. This may lead to not everything in the xml being read. Add 8 to remove all namespaces before query to have queries easier. |
0 | Optional |
Result
Returns OK or error.
Description
Validates XML against schema.Please pass in XML (or reference number from XML.Parse) and a valid XSD schema.
Version 8.2 or newer will return list of errors, so you see them all.
Examples
Validate XML:
Set Variable [ $result; Value:MBS("XML.Validate"; XML Validation::XML; XML Validation::Schema; 0) ]
See also
Example Databases
Blog Entries
- MBS FileMaker Plugin, version 8.2pr1
- MBS FileMaker Plugin v8.1 with 5100 Functions In One Plugin
- MBS FileMaker Plugin 8.1
- MBS FileMaker Plugin, version 8.1pr2
Release notes
- Version 10.2
- Changed XML.ValidateFile to accept schema as XML file path.
- Version 8.2
- Added XML.ValidateFile function.
- Changed XML.Validate to return errors about parsing the XSD schema.
- Improved XML.Validate to return several errors.
- Version 8.1
- Added XML.Validate function.
Created 6th February 2018, last changed 16th May 2019
Feedback: Report problem or ask question.
Links
MBS FileMaker Plugins