The validator is an XML validation engine to validate and process XML files in various formats. It basically does the following in order:
The validator depends on self defined scenarios which are used to fully configure the process. It always creates a validation report in XML. The actual content of this is controlled by the scenario.
See architecture for information about the actual validation process.
The validator is just an engine and does not know anything about XML documents and has no own validation rules. Validation rules and details are defined in validation scenarios which are used to fully configure the validation process. All configurations are self-contained modules which are deployed and developed on their own.
Currently, there are two public third party validation configurations available.
The validator can be used in three different ways:
The general way using the CLI is:
java -jar validationtool-<version>-standalone.jar -s <scenario-config-file> [OPTIONS] [FILE] [FILE] [FILE] ...
The help option displays further CLI options to customize the process:
java -jar validationtool-<version>-standalone.jar --help
A concrete example with a specific validator configuration can be found on GitHub
The CLI documentation shows further configuration options.
The validator can also be used in own Java Applications via the API. An example use of the API as follows:
Path scenarios = Paths.get("scenarios.xml");
Configuration config = Configuration.load(scenarios.toUri());
Input document = InputFactory.read(testDocument);
Check validator = new DefaultCheck(config);
Result validationResult = validator.checkInput(document);
// examine the result here
The API documentation shows further configuration options.
Note: With Java 11+, you need to include a dependency to org.glassfish.jaxb:jaxb-runtime
in your project explicitly,
as that dependency is marked optional
in this project and
will thus not be resolved transitively.
You can also start the validator as a HTTP-Server. Just start it in Daemon-Mode with the -D
option.
java -jar validationtool-<version>-standalone.jar -s <scenario-config-file> -D
The daemon documentation shows more usage details and further configuration options.
The validator distribution contains the following artifacts:
<version>
.jar: Java library for embedded use within an application<version
>-standalone.jar: Uber-JAR for standalone usage containing all dependencies in one jar file. This file comes with JAXB embedded and can be used with Java 8 and Java >= 11)<version
>-java8-standalone.jar: Uber-JAR for standalone usage with Java JDK 8 containing all dependencies in one jar file. This file file does not contain JAXB and depends on the bundled version of the JDK.