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 ...
26
votes
9answers
6k views

XML Attributes vs Elements

When should you use XML attributes and when should you use XML elements? e.g. <customData> <records> <record name="foo" description="bar" /> </records> ...
13
votes
4answers
9k views

What is difference between XML Schema and DTD?

I have googled this question but I do not understand clearly what is schema and DTD and why Schema is more powerful compared to DTD. Any guidance would be highly appreciated. Thanks.
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 ...
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 /> ...
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
3answers
2k views

Generate Json schema from XML schema (XSD)

Does anybody know how to generate a Json schema from a existing XML schema (XSD file)? Are there any tools available for this?
7
votes
9answers
6k views

Create a GUI from a XML-Schema automatically

I have to write a desktop application to edit data stored in a XML File. The Format is defined by a XML Schema File (.xsd). The Format is quite complex. Are there tools which can generate a basic gui ...
7
votes
2answers
4k views

Where are the schemas for XML files on an Android project?

Where are the schemas (DTD or XML schema) for the XML files used on Android like AndroidManifest.xml or the layouts?
6
votes
5answers
120 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 ...
6
votes
1answer
298 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
2answers
2k views

Validating against a Schema with JAXB

I've been looking for solutions to this problem for far too long considering how easy it sounds so I've come for some help. I have an XML Schema which I have used with xjc to create my JAXB binding. ...
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
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
746 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
6k views

Why can't Eclipse resolve the spring-dwr schema?

Eclipse is showing the following errors in my Spring's applicationContext.xml: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element ...
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 ...
5
votes
4answers
5k views

XML Serialize boolean as 0 and 1

The XML Schema Part 2 specifies that an instance of a datatype that is defined as boolean can have the following legal literals {true, false, 1, 0}. The following XML, for example, when deserialized, ...
4
votes
1answer
133 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
237 views

Working with XML, Schemas, DOM, PHP, et al

I appear to be reading in circles, or perhaps am simply not grasping some of the concepts here. I'm reworking a set of PHP template classes, that previously used some fancy regular expressions to ...
4
votes
1answer
499 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
264 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
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 ...
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
1answer
152 views

schema validate xml containing boolean values

Hi I have a xml like this: <xml><fullname> <name attrib="true"/> <lastname1 attrib="false"/> <lastname2 attrib="false"/></fullname></xml> I need to create ...
4
votes
9answers
820 views

Can anyone explain to me(beginner) in plain english what “Schema” means?

I need a plain English explanation of "schema" as in Database schema & XML schema. EDIT: When someone says to create a database schema, does it mean creating constraints for the fields in the ...
4
votes
2answers
61 views

Checking that at least 2 of the 5 lines exist on an address in XSL 1.0 before outputing the address node

I'm trying to create an address that validates against a schema set in stone, it requires that at least 2 of the 5 lines have been entered. Only show address node if at least two of the five lines ...
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
2answers
133 views

XML Schemas — List allowed attributes/tags at position in XML

Is there a way to query an XmlSchema or XmlSchemaSet for a list of available tags/attributes at a certain point in the XML? So say my cursor is between <b> and </b> and my schema only ...
3
votes
1answer
139 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
802 views

XML XSD Schema - Enforce Unique Attribute Values in Schema

Lets say I have a schema that defines the following XML: <Values> <Add Key="Key1">Value 1</Add> <Add Key="Key2">Value 2</Add> <Add Key="Key3">Value ...
3
votes
1answer
1k views

How to read xml schema from jar file in a servlet context

I have a maven library project with some classes to deal xml messages. Whenever I receive one of those messages I validate it using an xml schema file I have written. The code that does the validation ...
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
2answers
2k views

@xmlSchema annotation use with jaxb

I can't get to show in a xml file all the parameters configured with the @xmlSchema annotation at package level. For example, if I set: @javax.xml.bind.annotation.XmlSchema ( ...
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
3answers
246 views

How to test the validity of XML against an XML Schema in ActionScript?

I don't need to parse the XML, or to decode it into an ActionScript object -- I'm only interested in loading both XSD and XML and tell whether the latter is legal XML according to the document ...
3
votes
1answer
617 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
1answer
173 views

jaxb or equivalent for Coldfusion

I'm very new to this, so go easy on me. From my understanding, JAXB allows the programmer to use Java classes to write XML, and it takes care of creating the proper XML structure by reading XSDs. ...
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
3answers
789 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
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 ...

1 2 3 4 5 7