Tagged Questions

6
votes
4answers
524 views

RelaxNG vs XML Schema

I have a project where I'm using RelaxNG (jing) to validate xml. I like the syntax for RelaxNG, but most of the tools that I have work with XML schema (actually, I don't think I have a tool that ...
5
votes
1answer
32 views

XML Schema to validate each value in an NMTOKENS attribute list

Given this XML file: <users blessed="phrogz alians"> <user name="phrogz" id="42" /> <user name="lachtok" id="3" /> <user name="vielee" id="5" /> <user ...
2
votes
2answers
100 views

Python - RelaxNG object model generator / parser

Say I have this XML: <domain type='qemu' xmlns:qemu='http://libirt.org/schemas/domain/qemu/1.0'> <name>QEmu-fedora-i686</name> <memory>219200</memory> <os> ...
2
votes
1answer
153 views

Why does Jing not allow a colon (“:”) in an id attribute?

I've been banging my head against xsd:ID not allowing a colon (":") in an id attribute. I first noticed this when using James Clark's nxml-mode in Emacs as it validated an XHTML file I was working ...
2
votes
2answers
117 views

Any schema language for XML that allows for specifying constraints like no cyclic references?

Is there any schema language for XML that allows for specifying a constraint that there can be no cyclic references between elements. As a toy example: <animal name="A" eats="B"> <animal ...
2
votes
2answers
544 views

RelaxNG (rnc) schema to extend XHTML

I would like to edit XHTML files using Emacs' nxml-mode which can use rnc schemas for on the fly validation. This is all built in to newer Emacs versions. However, my XHTML files contain elements ...
1
vote
1answer
112 views

How to implement constraints / conditional operators in Relax NG?

Consider the following Relax NG schema written in Compact Syntax key = element key { type, value } type = element type { text } value = element value { text } Hereby any XML document like ...
1
vote
1answer
63 views

Relax rng xml schema - tools for C# code generation

Are there any tool for generating C# cs files from Relax schema definition files (*.rng)?
1
vote
1answer
269 views

xsd:ID in Relax NG Schema

I have the following xml file <bookshop> <book bid="1"> Programming in C# </book> <book bid="2"> programming in Java </book> <authors> <author bidref="1"> ...
1
vote
1answer
84 views

Set nillable element with Relax NG

Is there a way to declare that an element can be null using Relax NG, something like xsi:nillable="true" using XSD?
0
votes
1answer
25 views

Allowing additional attributes with Relax NG

I am writing a relax NG schema to validate some XML files. For most of the elements, there are some required attributes, and the instances of this XML schema may also add any extra attributes. For ...
0
votes
0answers
48 views

Generate object model out of RelaxNG schema with RNGOM - how to start?

I want to generate an object model out of an RelaxNG Schema. Therefore I want to use the RNGOM Object Model/Parser (mainly because I could not find any alternative - although I don't even care about ...
0
votes
1answer
53 views

How to define own types in Relax NG?

Consider the following regular expression pattern = "(0[1-9]|1[012])/(0[1-9]|[12][0-9]|3[01])/(19|20)\d\d" This pattertn represents date strings in MM/DD/YYYY format. Now, if I want to create ...
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
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
4answers
369 views

Ordered/unordered definition of an XML element's children using RELAX NG compact syntax

I want to use RELAX NG compact syntax to validate an XML element whose children are one, two, three or n of a set of n specific elements. For instance, if the element is 'Layout' and there is a set of ...
0
votes
1answer
96 views

XML schema for ASPX?

I'm editing a lot of .aspx files in Emacs these days. nxml-mode can use a schema (RELAX NG, but maybe others) to detect errors in XML, and I find it really handy for other things. Is there a RELAX ...