Tagged Questions
12
votes
5answers
2k views
XML Schema Validation with RelaxNG
Which XML validation tools can you recommend for both performance and accuracy, each of which is a critical issue on our system? We have the following requirements:
It is not not xmllint (see ...
5
votes
5answers
2k views
How to validate an XML document using a RELAX NG schema and JAXP?
I would like to validate XML documents using RELAX NG schemata, and I would like to use the JAXP validation API.
From Googling around, it appeared that I could use Jing and the ISO RELAX JARV to JAXP ...
1
vote
1answer
35 views
RelaxNG: <choice> containing <zeroOrMore>
In RelaxNG, I want to describe a structure similar to this:
<parent>
<subelem1>
<subelem1>
<subelem1>
...
</parent>
or:
<parent>
...
1
vote
1answer
56 views
RelaxNG - *any* attribute?
Is there a way to define an any name attribute? I'm validating code where users can and do apply their own attributes for tags and the like, which don't impact my project.
<define name="div">
...
0
votes
1answer
67 views
Validation Layer with interdependency checks
Existing backend services will be opened for more clients (adding a Web Service Layer to the Web-Frontend client).
Currently, XML Schema is used for validation of DTOs, but since the frontend is out ...
0
votes
3answers
109 views
built-in schema datatype for html / xhtml
Is there a built-in schema datatype for xhtml data? Suppose I want to specify a "boozle" element that contains two "woozles", each of which is arbitrary xhtml. I want to write something like this, ...