Tagged Questions
8
votes
2answers
389 views
Describe repeating XML nodes in W3C XML Schema?
I have an XML document like:
<Root>
<Bravo />
<Alpha />
<Charlie />
<Charlie />
<Delta />
<Foxtrot />
<Charlie />
...
6
votes
5answers
121 views
XML Schema How to Declare Price and Currency
I'm creating an XML schema that stores information about houses.
I want to store the price and the currency.
It makes sense in my mind to declare this by having the currency as an attribute of the ...
5
votes
1answer
931 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
3answers
6k views
Is it possible to use JAXB to map from schema to a java.util.Map?
I have an existing XML schema that contains a type that I would like to map to a Java Map of some sort using JAXB. My build process takes the schema and creates the beans. I would like to customize ...
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
500 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
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
412 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 ...
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
1answer
618 views
Why doesn't JAXB want to validate
I wrote some Java classes and annotated them with the JAXB annotations.
After that I used schemagen to generate an xsd.
Then I build an object graph and marshalled it to a xml file.
I modified the ...
3
votes
2answers
650 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
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
451 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
3answers
1k views
Does the sequence schema element guarantee order of child elements?
Given this xml schema (fragment):
<xs:element name="GetIEnumerableResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="GetIEnumerableResult" ...
3
votes
3answers
2k views
Attribute/element co-occurrence constraint in XML Schema
Is it possible to create an XML Schema which imposes a co-occurrence constraint to an attribute/element pair?
<primitive-list>
<primitive name="P1">
<definition><!-- ...
2
votes
1answer
51 views
XML Schema Multiple Elements and Attributes
I have this code:
<root>
<skill id="1">C++</skill>
<skill id="2">C#</skill>
<skill id="3">Java</skill>
<skill ...
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
72 views
XML Schema - How can I change the name of a ref'ed element?
I'm an XML Schema noob, and this is my first Stack Overflow question. Please forgive my ignorance of standards and etiquette in both.
In an XML Schema file (.xsd), I'm including another schema ...
2
votes
1answer
401 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
262 views
Schema Inheritance in BizTalk Server
I just wondering if anyone has already tried of doing something like schema inheritance in BizTalk schemas?
I am using WCF Adapter and using 'consume adapter service' to generate a schema ...
2
votes
1answer
81 views
Any way to have a schema use user-defined elements in its structure?
I'm wondering if it's possible to have a schema use user-defined elements (from the XML) for its structure.
As in, as a user, I would be able to have something like:
<subjectType>
...
2
votes
2answers
306 views
Validating only part of XML document using schema?
Is it possible to write a schema allowing mixing validated XML with just well-formed XML? Case in point is a data transfer application where requests consist of a bunch of meta-data (which we'd like ...
2
votes
2answers
187 views
Element repetition under <xs:all>
My data structure looks like this
<datastructure>
<field1>data</field1>
<field2>data</field2>
<field3>data</field3>
<field4>data</field4>
...
2
votes
2answers
92 views
Is there a way to allow 'this' attribute or 'this other' attribute, but not both?
I am trying to allow for two attribute values for one element. This is how I have it done now, but I only want to allow 1 of the 2, but not both.
<contact ...
2
votes
1answer
4k views
XML Schema: Setting a default value for a complexType?
Let's say I want to set up a generic complexType like so:
<xs:complexType name="button">
<xs:sequence>
<xs:element name="id" type="xs:string" minOccurs="0" ...
2
votes
1answer
120 views
Unique Particle Violations
I've been looking at this issue for too long. I suspect I'm missing something obvious because I'm overfamiliar with it.
I have a schema that suffers from a unique particle violation error. I can see ...
2
votes
3answers
243 views
Storing Database-Agnostic Schema
We have a set of applications that work with multiple database engines including Sql Server and Access. The schemas for each are maintained separately and are not stored in text form making source ...
2
votes
3answers
6k views
XSD - How to describe an unordered set of element types where the first element must appear first in the sequence?
This is an XML schema question.
I know that xsd:all element can't appear in a sequence (must be the top level element of its type).
That is, I cannot use the following:
<xsd:complexType ...
2
votes
1answer
507 views
How can you validate Elements based on an attribute Value using a Schema?
The XML I'm trying to validate is as follows:
<root>
<element attribute="foo">
<bar/>
</element>
<element attribute="hello">
<world/>
...
1
vote
0answers
48 views
.NET 4 Complex Schema Validation Issues
I'm close to achieving the goal of unit testing views in an ASP.NET MVC 3 project. I have the XML output as a string, and want to validate against the standard VoiceXML 2.1 schema. I downloaded said ...
1
vote
1answer
62 views
Use <xs:all> in XML schema's complexType?
I have the following XML complexTypes defined:
<xs:complexType name="loss">
<xs:all>
<xs:element name="lossCause" type="xs:string"/>
<xs:element ...
1
vote
2answers
24 views
In XML is a Schema User Created?
if I make an XML Schema; I would physically define that schema correct? Or is there a program somewhere that would create a schema for my XML file automatically? Maybe I am confused on Schemas I'm not ...
1
vote
2answers
177 views
How to define alternate XML structures in XSD schema?
How do you define alternate XML structures in xsd schema? For example the next structures would be optional:
<a>
<b/>
<c>
<d/>
</c>
</a>
and
<a>
...
1
vote
3answers
71 views
Is use=“optional” in xsd redundant?
Does it matter for any purpose (validation, binding ...) if I define the use of an xs:attribute as optional or do not define it at all?If it is redundant, why is it provided at all?
1
vote
2answers
164 views
XSLT does not work if my XML file has a Schema associated with it
If I remove the Schema definition from my XML, then my XSLT works, but I can't get it to work with the Schema defined. I know this question has already been answered here, but I can't seem to get ...
1
vote
2answers
309 views
XSD: restriction on type to not be empty /Blank and to exist? But its a simple type (string) inside a complexType
I have an XSD, here is part of it defined below, but its not working. I need to ensure that Name isn't like this
<Item Name="example"></Item>
notice that there is nothing in between ...
1
vote
1answer
108 views
Default Value for XSD
This question here asks about default values specified in an XSD file. Basically you can say the field "foo" defaults to value "bar"
What I want to know... is it possible to have a field default as ...
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
111 views
How to disable external schema downloads in NuSoap
One of our systems depends on a legacy application implemented in PHP, that uses NuSoap to query some SOAP webservices
Whenever it tries to connect to a webservice it also tries to download the ...
1
vote
1answer
247 views
How to document an XML Schema?
I have developed a XML schema for an application I wrote. Now I want to document the valid structure for the end user, however I can't come up with any natural way to do this. I've seen things like ...
1
vote
1answer
607 views
Preserving multiple xsd:any with JAXB using @XmlAnyElement
How can I support interleaved unknown XML using JAXB? Using @XmlAnyElement does not seem to be up to the job..
I am attempting to write an XML schema to allow interleaved elements from other ...
1
vote
2answers
122 views
different schema types for the same xml element depending on attribute
the xml looks like
<root>
<service name="product" />
<service name="sim" />
<service name="blub" />
</root>
the schema should look like
<xs:element name="root">
...
1
vote
1answer
229 views
Using xs:extension & xs:restriction together?
While writing an XML schema, I am attempting to do something like this
<xs:complexType name="ValueWithUnits">
<xs:simpleContent>
<xs:extension base="xs:double">
...
1
vote
1answer
106 views
Can we add new attribute or change type of existing attribute to a “Referenced Element”?
In my XML schema I have an element being referenced tens of times by other elements but with different enumerated values for one of its attribute.
For now, instead of creating this element in global ...
1
vote
3answers
183 views
Why my test xml is failing with very simple XSD Schema?
I am a bit novice in xml schema. I would be grateful if somebody help me out to understand why my xml is not being validated with the schema:
Here is my Schema:
<?xml version="1.0" ...
1
vote
2answers
62 views
XML schema for a complex type and I want an attribute on it
In your xml wisdom, have you a idea on how to define the type for “bDead” to be? (type=”xs:Boolean”)
<bDead>0
<xdn>state</xdn>
<xdv>alive</xdv>
</bDead>
...
1
vote
0answers
114 views
Forcing English exception messages
When xml schema validation fails .Net throws some exception. Based on parsing this exception I know how to do some stuff. The problem is that this exception is localized, e.g. on a Japanese machine it ...
1
vote
2answers
696 views
Generating C# classes from XML schema that use JAXB (Java Architecture for XML Binding)
I have a number of XML schema that use JAXB (Java Architecture for XML Binding) markup, similar to the following:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema ...