An XML schema is a description of a type of XML document. Common XML schema formats are DTD, XML Schema (with a capital S, also XSD, also WXS) and RELAX NG.

learn more… | top users | synonyms (1)

64
votes
19answers
7k views

XML attribute vs XML element

At work we are being asked to create XML files to pass data to another offline application that will then create a second XML file to pass back in order to update some of our data. During the process ...
25
votes
1answer
973 views

SchemaFactory doesn't support W3C XML Schema in platform level 8?

With the Android SDK, the following code in a plain empty Activity fails: @Override protected void onStart() { super.onStart(); SchemaFactory schemaFactory = ...
25
votes
5answers
12k views

Validating with an XML schema in Python

Bounty: This is a 2 year old question. Is there a XSD validator for Python now? I have an XML file and an XML schema in another file and I'd like to validate that my XML file adheres to the ...
21
votes
6answers
11k views

jQuery XML parsing with namespaces

I'm new to jQuery and would like to parse an xml document. I'm able to parse regular XML with the default namespaces but with xml such as: <xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" ...
17
votes
11answers
4k views

Is there a difference between 'valid xml' and 'well formed xml'?

I wasnt aware of a difference, but a coworker says there is, although he can't back it up. What's the difference if any?
15
votes
4answers
12k views

Free DTD to XSD conversion utility?

I have a DTD that I need to convert to an XSD (XML schema) file. Is there a free utility or simple way to accomplish this?
14
votes
2answers
5k views

What's the difference between xsd:include and xsd:import?

What's the difference between xsd:include and xsd:import? When would you use one instead of the other, and when might it not matter?
14
votes
4answers
27k views

Bogus Eclipse warning for web.xml: “No grammar constraints (DTD or XML schema) detected for the document.”

The top of my web.xml file looks like this: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
14
votes
15answers
2k views

What are best practices for designing XML schemas?

As an amateur software developer (I'm still in academia) I've written a few schemas for XML documents. I routinely run into design flubs that cause ugly-looking XML documents because I'm not entirely ...
13
votes
2answers
883 views

What are the limits to code generation from XML Schema in C#?

I've seen several questions regarding problems with generating classes from XML Schema using xsd.exe, along with suggestions for how to pre-process the schema (often using XSLT) to resolve some of the ...
13
votes
3answers
4k views

Java XSLT processors supporting XPath 2.0

What are the currently available XSLT processors supporting XPath 2.0 standard?
12
votes
2answers
8k views

Recursion in XSD Schemas

I need to create an XSD schema that validates a tree structure of an XML document. I don't know exactly the ocurrences or depth level of the tree. XML example: <?xml version="1.0" ...
11
votes
1answer
743 views

Modifying SQL Server Schema Collection

SQL Server XML Schema Collection is an interesting concept and I find it very useful when designing dynamic data content. However as I work my way through implementing Schema Collections, I find it ...
11
votes
2answers
5k views

XML Schema: Element with attributes containing only text?

I'm having difficulty searching for this. How would I define an element in an XML schema file that looks like this: <option value="test">sometext</option> I can't figure out how to ...
11
votes
2answers
2k views

Schema-aware XML editing in Vim

When editing an XML file in IntelliJ IDEA, if the document references a schema, IDEA will fetch the schema and use the information for auto-complete. It knows which tags are valid in which contexts, ...
10
votes
2answers
3k views

What is the difference between XML and XSD?

What is the difference between Extensible Markup Language (XML) and XML Schema (XSD)?
10
votes
7answers
12k views

Generating a JAXB class that implements an interface

I'm currently using JAXB to generate java classes in order to unmarshall XML. Now I would like to create a new schema very similar to the first and have the classes that are generated implement the ...
10
votes
3answers
6k views

Validate an XML File Against Multiple Schema Definitions

I'm trying to validate an XML file against a number of different schemas (apologies for the contrived example): a.xsd b.xsd c.xsd c.xsd in particular imports b.xsd and b.xsd imports a.xsd, ...
10
votes
10answers
6k views

What's the best XSD (XML Schema) authoring tool?

Good XML tools abound, but when it comes to creating (authoring) XSD files (XML schemas), things really don't look good. Most XML editors do the basic: it let you create stuff, with menus for the ...
10
votes
5answers
10k views

XML instance generation from XML schema (xsd)

I was wondering if there's a way I can automate the generation of XML files from XSD schemas given that I have the data and the labels. I'd like to do this in python/java. It seems very possible, yet ...
9
votes
3answers
155 views

JAXB: when using XML schema (.xsd) to validate an XML file, if validation fail, can I know which XML tag causing it?

so right now when I validate the XML file using an XML schema, I am only able to know whether it fail or pass, and if I want to know why it fail, I need to look at the error message like ...
9
votes
5answers
341 views

Is there a tool to generate a JSON schema from an XML schema through Java?

Is anyone aware of a tool or approach from which we can generate a JSON schema from XML schema or XML schema from JSON schema by Java?
9
votes
3answers
707 views

Unable to generate classes from JAXB in Maven environment

I'm using the xjc plugin in Maven environment and trying to generate classes from the Schema I'm able to do this (Create classes) using xjc from command line, but unable to do the same using maven ...
9
votes
1answer
242 views

C++ tool to generate random XML files from XML Schema?

I think there should be a tool to do so ? is anyone here aware of any ? I saw other posts related to this but found none for C++, I am aware that I can do that with JAVA and C#.
9
votes
4answers
3k views

XSD - how to allow elements in any order any number of times?

I am trying to create an XSD, and trying to write the definition with the following requirement: Allow child element specified to appear any number of times (0 to unbounded) Allow child elements to ...
8
votes
1answer
252 views

XML Schema for Oracle SQL Developer Data Modeler

Oracle Data Modeler uses xml as file format to save models. Has anybody a clue, whether there is a xml schema available that these files confirm to? Thanks in advance!
8
votes
1answer
297 views

Python - Validation with multiple schemas using lxml

I'm working with a schema that was built by a third party and I'd like to validate it with lxml. The problem is that such a schema is split over different xsd files, which reference themselves. For ...
8
votes
4answers
550 views

Generating XML Documents from XML Schemas in C++

Is there any easy way to create at least a template XML file using XML Schema? My main interest is bounded by C++, but discussions of other programming languages are also welcome.By the way I also use ...
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

what is the difference between XSD and WSDL

what is the difference between an XML Schema and WSDL, I have been reading a lot of stuff, but I still get confused ... The difference I noticed is that WSDL contains XSD and in WSDL we can declare ...
8
votes
4answers
12k views

Spring schemaLocation fails when there is no internet connection

Hi I am using Spring and at application-context.xml file; i have definations like : <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
8
votes
8answers
7k views

Open source tool to generate diagrams from XML Schema documents?

I'm looking for an open source tool to generate diagrams from XML Schema documents, similar to the Logical Model View in oXygen or the diagrams in XML Spy's Schema Editor.
8
votes
4answers
8k views

JAXB - Remove 'standalone=“yes”' from generated XML

Do you know of a JAXB setting to prevent standalone="yes" from being generated in the resulting XML? <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
7
votes
2answers
472 views

Is there an XSD for XSD's, a Meta-XSD?

Does there exist an Xml schema that will validate other XML schemas? What I want to do is take such a meta-schema (if it exists) and run it through XSD.EXE so that I can use C# classes to read an ...
7
votes
3answers
7k views

app.config “Could not find schema information” after converting to Visual Studio 2010 / .Net 4.0

After upgrading my project to Visual Studio 2010 and .Net 4.0, my app.config file generates these messages upon building the project: Could not find schema information for the element ...
7
votes
5answers
2k views

JAXB - Beans to XSD or XSD to beans?

I have an existing data model. I would like to express this data model in terms of XML. It looks like I have two options if I'm to use JAXB: Create an XSD that mirrors my data model, and use xjc ...
7
votes
4answers
18k views

Generating a WSDL from a xsd file

I need to generate a WSDL file given a xsd file. How do I do this? Can I do this in VS2005? What is the simplest way to do this? Cheers! Ausgar
7
votes
2answers
1k views

XML Schema: Why can't <xs:all> have <choice> children? and how can this be bypassed?

I'm trying to create a schema for a <property> element which must have a <key> sub-element, and one of <val>, <shell> or <perl> and an optional <os> or ...
7
votes
8answers
26k views

tool to generate xml file from xsd (for testing)

I have an xsd file and have not done much xml manipulation, parsing, etc. I want/need test xml files for my code but don't have any samples. (I am using xerces to parse) This is similar to: ...
7
votes
4answers
4k views

XSD Visualization?

I've been working with a lot of semi-complicated XSD's lately and am wondering: What are some of the better tools for working with XML schema? Are there any graphical tools? Standalone or ...
7
votes
2answers
2k views

Is there any defined atom syndication xml schema?

Yep, I asked it. There is no more thing to tell :) Thanks in advance.
7
votes
2answers
4k views

Can I have one XML-Schema (XSD) include another XML-Schema?

I currently have two XSD schemas and one is a "light" version of the other. Right now I have everything in the "light" version repeated in the "complete" schema, but this becomes a pain when I need to ...
6
votes
5answers
119 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
3answers
108 views

In Java, how do I parse an xml schema (xsd) to learn what's valid at a given element?

I'd like to be able to read in an XML schema (i.e. xsd) and from that know what are valid attributes, child elements, values as I walk through it. For example, let's say I have an xsd that this xml ...
6
votes
4answers
521 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
3answers
140 views

Official XHTML 1.1 DTDs vs. official XHTML 1.1 XML Schemas

I have the option of validating XHTML 1.1 documents against the official XHTML 1.1 DTDs (I use the plural because the "main" DTD actually includes several others) or against the official XHTML 1.1 XML ...
6
votes
1answer
390 views

Creating an XML Schema with attributes and elements contingent on other attributes

I'm trying to develop a schema that will validate some existing XML files I've inherited. I'd like to have the schema do as much of the validation work as possible. The challenge is that attributes ...
6
votes
2answers
1k views

XML schemas with multiple inheritance

Is it possible to have multiple inheritance in XML schemas, if so how? Example <xs:schema xmlns:xs="http://www.w3.org/2001/Schema" ....> <xs:complexType name="Account"> ...
6
votes
2answers
2k views

How do I use PowerShell to Validate XML files against an XSD?

As a part of my development I'd like to be able to validate an entire folder's worth of XML files against a single XSD file. A PowerShell function seems like a good candidate for this as I can then ...
6
votes
2answers
2k views

How to use SAXParseException effectively in Java

I'm validating against XMLSchema in Java, and getting SAXParseExceptions thrown when I have non-valid content models. I'm going to be using these exceptions to highlight where the validation has ...

1 2 3 4 5 33