MSV
JVM since1.1.0 Native since1.4.0
Validate XML payloads using Multi-Schema Validator (MSV).
What’s inside
-
MSV component, URI syntax:
msv:resourceUri
Please refer to the above link for usage and configuration details.
Maven coordinates
Or add the coordinates to your existing project:
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-msv</artifactId>
</dependency>
Check the User guide for more information about writing Camel Quarkus applications.
Additional Camel Quarkus configuration
This component typically loads XML schemas from classpath.
To make it work also in native mode, you need to explicitly embed the schema files in the native executable
by using the quarkus.native.resources.includes
property.
For instance, the route below would load the schema from a classpath resource named schema.rng
:
from("direct:start").to("msv:schema.rng");
To include this (an possibly other schemas stored in .rng
files) in the native image, you would have to add something like the following to your application.properties
file:
quarkus.native.resources.includes = *.rng
More information about selecting resources for inclusion in the native executable can be found at Embedding resource in native executable.