Tagged Questions

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
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 ...
2
votes
1answer
154 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
796 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 ...
1
vote
1answer
27 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
1answer
270 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
295 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
145 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
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 ...