Tagged Questions
Schematron was invented by Rick Jelliffe and is an ISO Standard.
5
votes
2answers
2k views
XML validation with Schematron/XSD in C#
I've been looking around for at a way to make some more advanced business rule validation of XML documents. So far Schematron seems to be able to do, what I need.
I've been looking around, and the ...
3
votes
1answer
44 views
Perform checks against XML files, such as Oracle OSB files and Soap-UI test files
Looking for a way we can do checks on XML files, beyond just schema validation. Have found a few references to Schematron which looks interesting, but struggling to see how we can piece this all ...
3
votes
1answer
218 views
Validating large xml files with schematron
I'm using schematron for validating large xml files (several megabytes). Validation is quite fast if files are ok (if there is no errors). But when the error count increases so increases the execution ...
2
votes
1answer
97 views
Get duplicate attributes in xml using schematron
I am writing few checks for XML file using schematron.
I want to write down a check so that there must be no duplicate attribute 'id' in any tag across the xml.
Please note, attribute 'id' can occur ...
2
votes
1answer
177 views
Validate an XML against a Schematron using PHP
There are a lot of resources about Schematron... however I cant find anything related or an example on how to validate an xml against a Schematront .sch file.
Anyone?
I already found 1 or 2 very ...
2
votes
1answer
435 views
XML validation by XSLT or Schematron in Eclipse XML Editor?
How can we validate xml document by either schematron or xslt in Eclipse xml editor? The idea is to extend xml document live validation in eclipse xml editor with some rules based validation method.
2
votes
1answer
2k views
How can I validate documents against Schematron schemas in Java?
As far as I can tell, JAXP by default supports W3C XML Schema and RelaxNG from Java 6.
I can see a few APIs, mostly experimental or incomplete, on the schematron.com links page.
Is there an approach ...
2
votes
1answer
165 views
XSD - how can I ensure the existance of a particular element with a given attribute?
I'm trying to add extra validation to jdpl process-definition files using XSD.
We have a couple of rules we want to add; but the one that's causing me problems is that there must exist one "node" ...
1
vote
1answer
21 views
validate a binary files presence with schematron
Id like to use schematron to validate that a file specified in the test document is actually present. The document and file will always reside in the same directory. e.g.:
<foo icon="bar.png" ...
1
vote
0answers
43 views
How to use schematron validation in Visual Studio?
I would like to validate a XML file against a schematron file I've. Is it possible to do it via Visual Studio 2010?
When I open XML file in Visual Studio, I am able to add XSD files which have ...
1
vote
2answers
31 views
How to check if an attribute resides within an element?
I want to check if there is an inline stylesheet within the document, but I am not sure how to pick descendant attributes of an element as "style" attribute could be attached to any element within the ...
1
vote
1answer
41 views
Validate one node based on criteria from another node by referencing the criteria's @ID
I am trying to validate the presence of a child element based on criteria in a different element in the document identified by its ID. Using ISO Schematron and XPath 2.0.
Take the following example:
...
1
vote
1answer
119 views
How do I return Schematron validation results in a structured manner
I have created several Schematron assertations and they are all running fine against my XML instances. However, I would like to structure the output of my error messages in such a way, that I later ...
1
vote
1answer
229 views
How to compare dates using XML and Schematron
Schematron XML date comparison in not working. And it returns a false error. I think I am using schematron 1.01. I am using C# and the DLL from MSDN:
MSDN schematron link
Here is the error output (by ...
1
vote
1answer
156 views
In a Schematron rule, how do i access the parent element of the current element?
I am using ISO Schematron to validate an XML document. The rule I have set works as required, but I want to report the name of the parent element from the context of where my assertion is fired. A ...
1
vote
1answer
185 views
Schematron & Xpath, testing for valid set of sub-elements and attributes
Since XSD doesn't cover my needs, i'm now evaluating Schematron. testing for other than allowed elements seems impossible.
I need to validate elements where @type="colorSet"..
Next tests are most ...
1
vote
1answer
373 views
Are there any supporting resources for schematron? any tutorials-tools etc
I am interested to learn Schematron .. Please suggest me a tutorial to practice (I am expecting a complete tutorial where I can develop my skills,,
well. I already know the basics of DTD, XSD and ...
0
votes
1answer
38 views
How to check in XPATH if a type is equal to a type or derived from the type
I'm working with XPath inside Schematron, I'm able to check that a type is equal to a target type. For example 'xsd:string eq xsd:string'.
<sch:rule ...
0
votes
1answer
86 views
Can I use schematron to validate that date ranges don't overlap in an xml file?
Imagine I have a simple xml file:
<intervals>
<range from="2001-12-17T09:30:47Z" to="2001-12-19T11:35:16Z" />
<range from="2002-12-17T09:30:47Z" to="2002-12-19T11:35:16Z" />
...
0
votes
1answer
40 views
Scope of Schema and Schematron
I have an element that can have a different structure depending on certain constraints. The element is defined as:
<xs:complexType name="MyElement">
<xs:sequence>
...
0
votes
2answers
125 views
Can this XML structure be expressed with XSD? Other validation options?
I have the following XML document structure that is already in production and cannot be changed:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<root ...
0
votes
2answers
226 views
Schematron validation and uniqueness
I'm trying to write some Schematron rules and one of them is supposed to check, if elements are unique in the scope of parent element. So I have an example xml structure:
<abc>
<elem ...
0
votes
1answer
442 views
xsd validation using schematron
I'm trying to add schematron validation to my xsd.
This is my new xsd :
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
xmlns:sch="http://www.ascc.net/xml/schematron"
...
0
votes
2answers
465 views
Why can't XML::Schematron::XPath find XML::XPath?
After installing the XML::Schematron::XPath module from CPAN I am getting the "Can't locate XML/XPath.pm in @INC) message.
]$sudo ls /usr/lib/perl5/site_perl/5.10.0/XML/
ESISParser.pm Filter ...