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 ...
6
votes
4answers
523 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 ...
5
votes
1answer
316 views

How can I use other/more modern schema validation with .Net?

I'm trying to do some work with C# and XML in a cross-platform app (most development is in MonoDevelop on Linux, but most users will end up using the WinForms front-end that I make in Visual Studio). ...
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 ...
5
votes
4answers
1k views

Schema-sensitive editing in emacs, based on W3C XML Schema? (not RNG)

I just learned, here, about nxml-mode, which, according to the README, is a major mode for GNU Emacs for editing XML documents. It supports editing well-formed XML documents and also ...
5
votes
2answers
1k views

How do I validate XML via RELAX NG in Ruby?

The REXML module appears to have support for RELAX NG validation, but the docs don't have any real information on using the validation portion of the framework. How would you validate an XML document ...
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
1answer
108 views

relaxng: invalid schema definition?

I'm trying to write a schema for some XML documents using RELAX-NG, and when I use it with jing, I get an error message I don't understand: C:\tmp\xml>java -jar jing.jar -c list-test2.rnc ...
2
votes
1answer
677 views

How do I validate XML document using RELAX NG schema in Python?

How do I validate XML document via compact RELAX NG schema in Python?
2
votes
1answer
353 views

Relaxer or JAXB for XML->Object Model?

I would like generate an AST from my XML-definition, to be used for code generation later on. The XML schema is written in Relax NG, since it seemed like a neater and more modern than XSD and DTD ...
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 ...
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
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
2answers
119 views

Validating xml against relax ng in ANSI C

Is it possible to validate an xml file against a Relax NG schema in ANSI C? I have come across this library called libxml2 but all help I could get from it is with respect to how to parse an xml file. ...
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
122 views

Define an element as non-empty in RelaxNG

I've started using RelaxNG to specify XML message schemas, and using PHP DOMDocument to validate and parse incoming messages, but can't figure out how to define a text node so that it cannot be empty. ...
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
55 views

Is there an application that can help someone create an XML document based on the Relax NG schema?

I've spent a bit of time creating a Relax NG schema for use within our team to validate XML documents we use for exchanging information. The schema is not complicated, but it is reasonably large. I ...
1
vote
1answer
144 views

XSD sequence shows as abiguous!

I have an XSD which was transformed from a RELAX NG schema with a few errors I am trying to fix. The big issue I have it with the following <xs:element name="list"> <xs:complexType> ...
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
1answer
18 views

Is it possible to force the use of CDATA via RelaxNG?

I'm looking for a way to use RelaxNG to require an element in an XML document to be populated with CDATA. I don't see it listed in the Guidelines for using W3C XML Schema Datatypes with RELAX NG or ...
0
votes
1answer
86 views

How to validate xml document against relaxNG schema in libxml++

I'm rather new to parsing xml in c++ and to xml in general. I'm trying to parse my document with SAXParser from libxml++ library, however, I would also like it to validate my document against a ...
0
votes
1answer
64 views

Analysis for an XML parsing (and validating) C program

Thanks to jmbr at Stack Overflow, I finally found a way to validate xml against RELAX NG via a C program. The program is as follows... #include <stdio.h> #include <stdlib.h> #include ...
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
115 views

Why isn’t Jing picking up xml:id for XInclude?

Given the following files a.rnc: start = a a = element a { b } b = element b { attribute xml:id { xsd:ID }?, attribute xml:base { xsd:ID }?, empty } a.xml: <a ...
0
votes
1answer
47 views

defining specific Number of elements in Relax NG Schema

I want to ask you how to define a specific number of elements in Relax NG Schema.For example, I have an XML file about a contest. In this contest, there should be only two teams. no more than two ...
0
votes
3answers
246 views

Using Jing with Google App Engine. Can't load SchemaFactory given Relax NG schema

Okay, so here's the short of what I'm trying to achieve. I am developing a small Google App Engine application that generates XML given a particular object. Now, I run into issues because I need to ...
0
votes
1answer
61 views

Porting Solaris program to Linux [RelaxNg Validity error: Element ticket failed to validate attributes]

I am porting a module of code from Solaris to Linux. I get this error element ticket: Relax-NG validity error : Element ticket failed to validate attributes I am totally struck up and have no idea ...
0
votes
1answer
94 views

How do I specify a numeric range of occurences in RELAX NG?

I am developing a schema using RELAX NG. I'm pretty new to this, so it is quite possible that I am overlooking something obvious, but there doesn't seem to be a convenient way to specify the number of ...
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
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, ...
0
votes
1answer
42 views

What does the ns attribute in the grammar tag of a RelaxNG schema do?

I can't seem to find any documentation on it that makes any kind of sense to me. I've noticed that it seems to relate to the xmlns attribute of the schema that is being validated. It looks like if ...