Tagged Questions
XSD generally refers to a document written in the W3C XML Schema format, containing a description of a particular type of XML document.
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 ...
41
votes
15answers
45k views
How to generate sample XML documents from their DTD or XSD?
We are developing an application that involves a substantial amount of XML transformations. We do not have any proper input test data per se, only DTD or XSD files. We'd like to generate our test data ...
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 ...
29
votes
24answers
24k views
What is the best XML editor? [closed]
Is there a good XML / XSD editor out there? I've been using the editor in Visual Studio 2005 a little but find it lacking in features.
Which editors do you use?
28
votes
3answers
24k views
Validating an XML against referenced XSD in C#
I have an xml file with a specified schema location such as this.
xsi:schemaLocation="someurl ..\localSchemaPath.xsd"
I want to validate in C#. Visual Studio, when I open the file, validates it ...
27
votes
6answers
10k views
Comparison of xsd codegenerators (C#)
I'm doing some research in code generation from xsd schema files.
My requirements:
Must generate C# 2.0 code (or above), using generic collections where needed.
Must generate comments from the xsd ...
27
votes
8answers
13k views
What's the best way to validate an XML file against an XSD file?
I'm generating xml files that need to conform to an xsd that was given to me. What's the best way to do this?
23
votes
9answers
15k views
Any tools to generate an XSD schema from an XML instance document?
I am looking for a tool which will take an XML instance document and output a corresponding XSD schema.
I certainly recognize that the generated XSD schema will be limited when compared to creating a ...
20
votes
10answers
31k views
Generate Java classes from .XSD files…?
I have a gigantic QuickBooks SDK .XSD schema file which defines XML requests/responses that I can send/receive from QuickBooks.
I'd like to be able to easily generate Java classes from these .XSD ...
18
votes
1answer
8k views
Add attributes to a simpletype or restrictrion to a complextype in Xml Schema
The problem is as follows:
I have to following XML snippet:
<time format="minutes">11:60</time>
The problem is that I can't add both the attribute and the restriction at the same time. ...
16
votes
2answers
9k views
XML - Data At Root Level is Invalid
I have an XSD file that is encoded in UTF-8, and any text editor I run it through doesn't show any character at the beginning of the file, but when I pull it up in Visual Studio's debugger, I clearly ...
16
votes
4answers
4k views
Validating a HUGE XML file
I'm trying to find a way to validate a large XML file against an XSD. I saw the question ...best way to validate an XML... but the answers all pointed to using the Xerces library for validation. The ...
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
1answer
483 views
Is there a XSD-driven random XML test data generator?
For stress tests, I would like to create XML files based on a XSD with random (but valid!) test data. Is there a tool which can read a (simple) XSD file and build a XML file based on the schema ...
14
votes
1answer
8k views
Automatically generate XSD to C# in Visual Studio IDE
I am running Visual Studio 2010. I have a XSD schema and want to use xsd.exe tool to generate appropriate C# file. I have done this successfully from a command line but now I want to do the same from ...
14
votes
1answer
10k views
How to generate a Java class which implements Serializable interface from xsd using JAXB?
I would like to introduce caching into an existing Spring project which uses JAXB to expose WebServices. Caching will be done on the level of end points. In order to do that classes generated from XSD ...
13
votes
2answers
884 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 ...
12
votes
4answers
2k views
dtd vs xsd, which one to choose?
i want to use one of these to describe my xml document.
i've read that xsd is better than the older dtd since it supports namespaces and data types.
does this mean that i should only use xsd for all ...
12
votes
6answers
9k views
Unmarshalling XML files into Java objects in Android?
I'm making use of an API on the internet that is marshalling objects to XML files. Given that the XSD files are also available I'd like to be able to unmarshall them back in to Java objects once I've ...
12
votes
4answers
32k views
How to resolve “Could not find schema information for the element/attribute <xxx>”?
In visual studio, I have an asp.net 3.5 project that is using MS Enterprise Library 4.0 application blocks.
When I have my web config file open, my Error list fills up with 99 messages with things ...
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" ...
12
votes
4answers
999 views
XML namespaces and attributes
I'm trying to understand how namespaces work in XML. When I have an element like foo:bar, the attributes will often not have namespaces on them. But sometimes they will. Are the attribute in the ...
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
12answers
13k views
How to convert xsd to human readable documentation?
We have a few XML based interfaces that is quite well documented in XSD schemas. The interfaces are now going to be publicly available and we would like to create reference documentation for them.
Is ...
11
votes
8answers
22k views
How can I create database tables from XSD files?
I have a set of XSDs from which I generate data access classes, stored procedures and more.
What I don't have is a way to generate database table from these - is there a tool that will generate the ...
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
3answers
7k views
Is svcutil.exe a replacement for xsd.exe?
I am using xsd.exe to generate some c# classes from a .xsd file. I ran into the same issue that is covered here and on other sites where xsd.exe generates Type[] arrays instead of generic List ...
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 ...
10
votes
4answers
7k views
XSDObjectGen.exe vs XSD.exe
Can anyone tell me what is the difference between XSDObjectGen.exe & XSD.exe?
Is there any way to make XSDObjectGen.exe work in dot net 2.0?
9
votes
2answers
161 views
What Python accessible tools can you use to generate XSD from an XML document?
I'm looking for a tool that will play nicely with Python.
Except for my Python requirement, my question is the same as this one:
"I am looking for a tool which will take an XML instance document ...
9
votes
3answers
3k views
Getting started with XSD validation with .NET
Here is my first attempt at validating XML with XSD.
The XML file to be validated:
<?xml version="1.0" encoding="utf-8" ?>
<config xmlns="Schemas" ...
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 ...
9
votes
2answers
178 views
How to handle the different dialects of regular expressions (java vs. xsd)?
When I try to validate an XML file against an XSD in java (see this example) there are some incompatibilities between the regular expressions given in the XSD file and the regular expressions in java.
...
9
votes
2answers
1k views
XSD - one of 2 attributes is required?
Is there a way to specify that one of 2 attributes is required in XSD?
for example, i have a definition like this.
<xs:attribute name="Name" type="xs:string" use="optional" />
<xs:attribute ...
9
votes
2answers
835 views
Default build action for a filetype
Everytime I add an xsd file to my Visual Studio 2008 build project, its build action is defaulted to "none". I regularly forget to put this one to "content" which messes up the build...
Is there ...
9
votes
4answers
1k views
9
votes
6answers
5k views
XSD Code Generator
Are there any Code Generators that would take a well-formed XML document, and write out an XSD schema based on how the XML document is structured?
8
votes
2answers
892 views
JAXB: Generating classes for two XSDs which share a common XSD
I have 2 service XSD files AService.xsd and BService.xsd each with different targetNamespace. Both of these use a common XSD called common.xsd. I use the JAXB Maven plugin to generate classes. Here's ...
8
votes
1answer
1k views
Using .NET to validate XML against a schema
I want to test (true or false) whether an arbitrary XML file matches a given schema.
For what it's worth, the schema is the Word 2003 WordML schema, which Microsoft defines using a list of about 7 ...
8
votes
4answers
518 views
Validating XML with XSDs … but still allow extensibility
Maybe it's me, but it appears that if you have an XSD
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" ...
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
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
3answers
8k views
What is an xs:NCName type and when should it be used?
I ran one of my xml files through a schema generator and everything generated was what was expected, with the exception of one node:
<xs:element name="office" type="xs:NCName"/>
What exactly ...
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#
8
votes
7answers
4k views
Middle way between XSD all and XSD sequence
I'm defining a user element with XSD. For this example, a user has a name, email and one or more nationalities. I've tried:
<xs:all>
<xs:element name="name" blabla />
<xs:element ...
8
votes
4answers
12k views
generate xml from xsd
Is there an IDE out there that can generate XML from XSD?
Not Oxygen or XmlSpy, they are too expensive for me...
command line based is ofcourse the preferred method!
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"?>
8
votes
4answers
5k views
Xsd and inheritance
I have an xsd like this
< xsd:complexType name="A">
< xsd:complexContent>
< xsd:sequence>
< xsd:element name="options">
...