Tagged Questions
46
votes
12answers
38k views
XML Schema (XSD) validation tool?
At the office we are currently writing an application that will generate XML files against a schema that we were given. We have the schema in an .XSD file.
Are there tool or libraries that we can ...
29
votes
10answers
2k views
What are XML namespaces for?
This is something that I always find a bit hard to explain to others:
Why do XML namespaces exist?
When should we use them and when should we not?
What are the common pitfalls when working with ...
8
votes
2answers
388 views
Describe repeating XML nodes in W3C XML Schema?
I have an XML document like:
<Root>
<Bravo />
<Alpha />
<Charlie />
<Charlie />
<Delta />
<Foxtrot />
<Charlie />
...
8
votes
4answers
3k views
Possible to validate xml against xsd using code at runtime c#?
I have xml files that I read in at runtime, is is possible to validate the xml against an xsd file at runtime? using c#
7
votes
2answers
64 views
How can I specify an element to have an attribute that states how many children it contains in an XML Schema?
Is it even possible?
I know it’s possible to do a restriction based on regex, but that’s not it
I know it’s possible to declare an attribute as a foreign key calculated by an XPath, but it seems it ...
7
votes
5answers
6k views
How can i tell jaxb / Maven to genereate multiple schema packages?
Example:
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
...
6
votes
1answer
297 views
Validate an XSD schema using XSD
Since an XSD schema is a valid XML document itself, is there any main XSD document that could be used to validate any other XSD document?
In case you wonder why I need this, I am working with a ...
6
votes
3answers
2k views
XML Schema key/keyref - how to use them?
Long story short : i would like to know how to use the key/keyref from XSD to let elements have references to each other. it has to have a form of an example, using a simple xsd and an XML.
Long ...
6
votes
8answers
8k views
generate PHP classes from XSD?
Is there in the world analogues of JavaBeans or JAXB for PHP?
Is it possible to generate PHP classes from XML schema?
It's common practice to publish API's as XSD schemas. Java and C# guys can get ...
6
votes
1answer
1k views
XML Schema construct for “Any number of these elements - in any order”
I need to create an XML schema that looks something like this:
<xs:element name="wrapperElement">
<xs:complexType>
<xs:sequence>
<xs:element type="el1">
...
5
votes
1answer
925 views
How do I ensure unique element values in an XML schema?
I want to ensure that there are no duplicate book titles in the following xml:
<?xml version="1.0" encoding="UTF-8"?>
<books xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
5
votes
5answers
745 views
Complete XML Schema Validation
I am looking for a tool that will tell me all of the XML Schema validation failures. All the other tools I have looked at so just tell me the first couple, and then I have to fix those before it will ...
5
votes
3answers
3k views
XSD key/keyref: hierarchical key structure
I'm trying to define some foreign key constraints on an XML schema using xs:key and xs:keyref definitions. I want the structure of the document to be hierarchical in the following way:
<?xml ...
4
votes
1answer
132 views
Any XML/XSD Tutorials For The Novice?
Does anyone know of any tutorials about XSD/XML for the novice, that explains things simply but goes into great detail on how to do things?
4
votes
1answer
498 views
XML Schema: Can I make some of an attribute's values be required but still allow other values?
(Note: I cannot change structure of the XML I receive. I am only able to change how I validate it.)
Let's say I can get XML like this:
<Address Field="Street" Value="123 Main"/>
<Address ...
4
votes
1answer
262 views
Creating a 'flexible' XML schema
I need to create a schema for an XML file that is pretty flexible. It has to meet the following requirements:
Validate some elements that we require to be present, and know the exact structure of
...
4
votes
1answer
496 views
XSD: How to redefine the data type of a simpleType eg. from xs:string to xs:integer
I am trying to extend and tailor an external xsd schema (of the fixml standard). I need to change the data type of some of the elements, without touching the original schema, but by redefining it; but ...
4
votes
2answers
152 views
Most Efficient Schema For This OR That, or This AND That
I'm trying to write an XML schema that allows XML to be expressed in the following ways:
pets can containt both cat and dog elements:
<root>
<pets>
<cat />
<dog />
...
4
votes
2answers
411 views
XML Schema reading/editing in vim?
As XML Schemas can be tedious to read (yes, just want to read through the schema) in their normal form, I'm wondering if anyone knows of an existing plugin for vim which will display the schema in ...
4
votes
2answers
130 views
Strange XML schema
Ok, so I have been tasked with writing an XSD from an XML document given to us by a vendor. This vendor does not have an XSD they can furnish, so I am reverse engineering one. Here is an example of ...
4
votes
3answers
2k views
What does the error “The element cannot contain white space. Content model is empty.” mean?
I'm putting together an xml schema for a simple xml (see bellow for both xml and schema). But I keep getting the following error with regards to the section node: "The element cannot contain white ...
4
votes
3answers
204 views
How should I manage different incompatible formts of Xml based documents
I have an application which saves documents (think word documents) in an Xml based format - Currently C# classes generated from xsd files are used for reading / writing the document format and all was ...
4
votes
2answers
2k views
XML schema construct for “any one or more of these elements but must be at least one”
I'm trying to set up part of a schema that's like a "Sequence" where all child elements are optional, but at least one of the elements must be present, and there could be more than one of them.
I ...
3
votes
1answer
135 views
PHP xmlreader: How to cache xsd schema?
I'm using PHP xmlreader to validate and parse xml data. This xml is validated with some xsd schema from local file via XMLReader::setSchema function and remote xsd schema from http:// via ...
3
votes
1answer
136 views
XML schema can have multiple choices in a single complexType?
Is it possible to do something like this in an XML schema?
<xsd:complexType name="ItemsType">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element ref="shirt"/>
...
3
votes
2answers
139 views
Change Sequence to Choice
In my Schema File I defined a Group with a Sequence of possible Elements.
<group name="argumentGroup">
<sequence>
<element name="foo" type="double" />
...
3
votes
3answers
132 views
Is having an XSD considered good practice when passing XML marshalled objects across the wire?
I'm using a mix of JAXB, JPA, and a RESTful web service to pass objects across the wire. My domain objects contain a mix of JPA and JAXB annotations, and I'm able to successfully unmarshall my domain ...
3
votes
2answers
649 views
xs:choice unbounded list
I want to define an XSD schema for an XML document, example below:
<?xml version="1.0" encoding="utf-8"?>
<view xmlns="http://localhost/model_data" ...
3
votes
3answers
786 views
XML Schema (XSD) - How to specify parent element to contain at least one child element?
I have an XML schema (XSD) that defines an element as mandatory (call it the parent); this parent has, lets say, five child elements, which can all be optional, BUT AT LEAST ONE child element must ...
3
votes
4answers
2k views
xsd.exe - schema to class - for use with WCF
I have created a schema as an agreed upon interface between our company and an external company. I am now creating a WCF C# web service to handle the interface.
I ran the XSD utility and it ...
3
votes
2answers
205 views
XSD regular expression pattern in .Net causes application to hang
Processing time doubles as "Y" goes to the right.
Can anybody tell me why? How to solve this problem?
I have many big ID's stored in a database those can't be changed so I can't limit the size too ...
3
votes
1answer
181 views
How do you add an attribute to an xml schema element?
I have a project where a xsd document is loaded, and based on that a editor is created for each element. And then xml that implements that schema is loaded into the editor. This could be a simple ...
3
votes
4answers
265 views
XML Schema - only one element should have attribute set to true
How can i define an boolean attribute that can be set "true" only in one element.
Following snippet must be invalid.
<products>
<product featured="yes">Prod 1</product>
...
3
votes
4answers
449 views
XSD: How to validate the XML file according to value of some tag?
I was trying to validate this XML file ...
where if
<tag1> is "Y" then <tag2> must appear
if <tag1> is "N" then <tag2> must not appear ..
<parent>
<a>
...
3
votes
2answers
993 views
JAXB XJC code generation - ObjectFactory class is incomplete
I generate Java classes from my XSD schema file using XJC command line tool. The ObjectFactory class generates incomplete content. It generates creation methods without JAXBElement<Type> ...
3
votes
3answers
217 views
Looking for an XSD representing an 'Order' for a shopping cart
I am trying to create an XML schema representing an 'order' for a shopping cart
I want this to completely abstract away my shopping cart's implementation -- and eventually support partners sending us ...
2
votes
2answers
46 views
PHP - XSD schema validation error with unicode regular expression
Description:
When I try to validate XML file with given XSD schema containing Unicode regular
expression, the function DOMDocument::schemaValidate return a validation error.
The XSD schema is W3C ...
2
votes
2answers
34 views
Using XSLT to sort elements that will match the correct schema XSD
I want to do something like this Can you transform unordered xml to match an xsd:sequence order? bu a little more complex than that. For example:
<person>
<addressList>
...
2
votes
3answers
61 views
XML Schema Header & Namespace Config
Migrating from DTD to XSD and for some reason the transition is a bumpy one. I understand how to define the schema once I'm inside the <xs:schema> root tag, but getting past the header & ...
2
votes
1answer
401 views
Parsing XSD Schema with XSOM in Java. How to access element and complex types
I’m having a lot of difficuly parsing an .XSD file with a XSOM in Java. I have two .XSD files one defines a calendar and the second the global types. I'd like to be able to read the calendar file and ...
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
398 views
One xml namespace equals one and only one schema file?
...or Why do these files validate in Visual Studio 2010 but not with xmllint1?
I'm currently working against a published xml schema where the original author's habit is to break down the schemas into ...
2
votes
3answers
122 views
XSD attribute cannot equal value?
How can I restrict an attribute to not allow a particular value?
For instance, I have an <xs:key/> on an Id attribute of an element, but some yahoo has gone and thrown a magic number in there ...
2
votes
1answer
283 views
JAXB: setting complexTypes to use existing java classes
Currently, JAXB is creating a point class from the xml schema I have specified. However, I would prefer it to use the existing java.awt.Point class. And for any other types I have defined to use and ...
2
votes
0answers
94 views
Is there a XSD Schema of Activity Stream feed?
I am trying to map Activity Stream feed to Java entity beans using JAXB. If there were a XSD schema of ActivityStream, it would be so much easier.
Does anyone know if there exists a XSD schema of ...
2
votes
1answer
122 views
Where is the definition of Global_NS in a BizTalk schema?
I'm trying to use a distinguished property but I get an error "Cannot implicitly convert type ... to Global_NS ... "
I've googled/bing'ed but I've found only 4 references, none of which help
I ...
2
votes
2answers
1k views
Is there a way to export an XSD schema from a DataContract
I'm using DataContractSerializer to serialize/deserialize my classes to/from XML. Everything works fine, but at some point I'd like to establish a standard schema for the format of these XML files ...
2
votes
2answers
898 views
Flattening XSD schema documents (HR-XML 3.0)
I have several "main" XSD documents, which import "supporting" XSD documents. These schema documents happen to be from the HR-XML 3.0 specification, in particular related to Background Screening.
For ...
2
votes
1answer
272 views
XSD ordering for extended type?
I am trying to write a schema that doesn't require specific ordering for an extended type. I tried to use an "all" group, but it seems to only permit a "sequence".
I am getting this error message ...
2
votes
1answer
246 views
XML Schema (XSD): How to express “At most one element from group A and at most one element from group b”?
Say I have two sets of XML elements:
<One/>
<Two/>
<Three/>
And
<A/>
<B/>
<C/>
And I want to have them as children of a bucket element:
<Bucket>
...