validateSchematronvalidateSchematron
Validate XML using Schematron
Home > Books > NetKernel API and Services Reference > Accessor Listing > XML Accessors > validateSchematron

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:ext:xml:ura

The validateSchematron accessor is exported by the urn:org:ten60:netkernel:ext:xml:ura module. Import this module to gain access to the accessor.

Syntax

URI
active:validateSchematron

ArgumentRulesDescription
operandMandatory the resource to be validated
operatorMandatory the resource holding the Schematron schema

Example Usage

DPML

<instr>
  <type>validateSchematron</type>
  <operand>foo.xml</operand>
  <operator>bar.xml</operator>
  <target>this:response</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:validateSchematron");
req.addArgument("operand", [resource representation, aspect, or URI] );
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The validateSchematron accessor is used to validate the operand against a Schematron schema operator document. Schematron is an XPath based schema language developed by Rick Jelliffe. You can find out more here

A document can be validated several times in a processing pipeline and against different or even dynamically generated schema. Validation can be the basis for pipeline branches.

validateSchematron returns a canonical boolean document <b>t</b> true, or <b>f</b> false.

References

validateRNG
validateXSD

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.