Tagged Questions

RELAX NG (ISO/IEC 19757-2) is an International Standard schema language for XML. A RELAX NG schema specifies a grammar that a validator can apply to XML documents to determine whether or not they are schema-valid.

learn more… | top users | synonyms

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
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 ...
6
votes
1answer
377 views

RELAX NG C++ Code Generator?

Are there any open source RELAX NG C++ code generator? Thanks.
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 ...
4
votes
1answer
637 views

Is there a Relaxer for .NET? Is Relaxer alive? Is RelaxNG viable?

I read about Relaxer, the thing that compiles .RNG to Java classes. BBut the website, http://www.relaxer.org/, is dead. Q1: Is Relaxer alive? Is it real, does it work? Is it reasonable to generate ...
3
votes
1answer
165 views

Maintaining Consistency Between JavaScript and C# Object Models

I'm working on an ASP.NET web application that uses a lot of JavaScript on the client side to allow the user to do things like drag-drop reordering of lists, looking up items to add to the list (like ...
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
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
354 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
1answer
795 views

converting RELAX NG to XSD with trang while keeping external namespace elements (for use with JAXB)

I am using trang to convert a RELAX NG .rng file to an XML Schema .xsd file for use with JAXB. Is there a way to put attributes/elements in the .rng file and have them show up in the .xsd file? I ...
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
25 views

RelaxNG or XSD schema validation with JavaScript

I'd like to do RelaxNG (preferred) or XSD (if I have to) schema validation in client-side JavaScript. Any good libraries for this? Google finds jsrelaxngvalidator but I'm having trouble getting it ...
1
vote
0answers
77 views

Validating XHTML5 in PHP?

Background I have made the decision to serve my website as application/xhtml+xml to anyone who will accept it. I understand that there are consequences, which consequences I'm willing to accept. ...
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"> ...
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
56 views

Automatically convert RelaxNG schema to an editable GUI

I have a RelaxNG schema and I'd like to create documents conforming to the schema, but using the schema to derive a GUI (preferably Java) that would contain fields corresponding to elements of the ...
1
vote
2answers
97 views

Limitations of Eric van der Vlist's RelaxNG simplicification

All, I am trying to simplify a RelaxNG schema using Eric van der Vlist's simplification.xsl, but I'm getting errors: runtime error: file ./simplification.xsl line 741 element element xsl:element: ...
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?
1
vote
1answer
294 views

Can I convert RELAX NG to the XSD?

Subject. And If I Can that second question How? I tried to use "trang" java library and nothing happened :(
1
vote
1answer
56 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
43 views

RelaxNG Debug Message for Choice Elements

How do I make my RNG file more verbose so that if I fail to specify a required choice element, the error message will be better described than just: Expected an element , got nothing Is there a way ...
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
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
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
52 views

RELAX NG on Windoz

I am guessing that my problems could stem from Windows file issues related to UTF8. But then again, the code is Java based, so the problem could be anything. I ran the MSV and JING validators and ...
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
1answer
58 views

Read status from failed Relax NG validation in HXT

Validating an XML file in Haskell works fine with HXT and Relax NG, apart from one thing: how can I get the result? With the following code, the XML file xmlFilename gets validated against the Relax ...
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
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
1answer
42 views

Nested annotations in RelaxNG?

Trying to get the following XSD output from RelaxNG, using Trang for conversion: <xs:annotation> <xs:documentation>Basic documentation text here.</xs:documentation> ...
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 ...

1 2