XSD generally refers to a document written in the W3C XML Schema format, containing a description of a particular type of XML document.

learn more… | top users | synonyms

91
votes
18answers
98k views

How to generate sample XML documents from their DTD or XSD? [closed]

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 ...
68
votes
10answers
49k 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?
52
votes
4answers
61k 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 ...
15
votes
8answers
40k 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 ...
111
votes
15answers
97k views

XML Schema (XSD) validation tool? [closed]

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 ...
73
votes
12answers
57k 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 ...
25
votes
2answers
18k 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 ...
44
votes
8answers
24k 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 ...
19
votes
11answers
28k 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 ...
1
vote
2answers
1k views

Biztalk 2010: mapping an xsd with a lot of elements with the same name

In Bitzalk 2010 I should map from an input to an XML with the following structure: <REQUEST> <PROGRAM name="PROGRAM123"> <INPUT> <INSTRUCT name="INSTR1"> ...
13
votes
5answers
16k views

XML instance generation from XML schema (xsd) [closed]

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

Java API to parse XSD schema file

Is there a Java API to parse an XSD schema file? I found XSOM, but it doesn't seem to be maintained anymore.
1
vote
1answer
775 views

The 'minOccurs' attribute cannot be present

I'm in the process of building my svcutil command line to generate business objects from the OSEO schema. Whenever it tells me "xxx" type is missing, i determine what xsd i need to include to the ...
22
votes
4answers
27k 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?
32
votes
10answers
4k 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
10answers
31k views

tool to generate xml file from xsd (for testing) [closed]

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: ...
35
votes
12answers
70k 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 ...
13
votes
5answers
31k 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
1answer
17k views

Convert XSD into SQL relational tables

Is there something available that could help me convert a XSD into SQL relational tables? The XSD is rather big (in my world anyway) and I could save time and boring typing if something pushed me ...
3
votes
2answers
2k views

Restricting XML Elements Based on Another Element via XSD

I believe this has to do with keyref but I'm not for sure, and I am really not sure that it can be done at all. For example, say I have myElement1 and myElement2. If there are no myElement2 in the ...
2
votes
13answers
9k views

C++ web service framework

We are looking for a C++ Soap web services framework that support RPC, preferably open source. Any recommendations?
26
votes
4answers
60k 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 ...
14
votes
4answers
11k 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?
14
votes
7answers
10k views

XSD Code Generator [closed]

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?
16
votes
5answers
20k 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> ...
30
votes
4answers
17k 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 ...
18
votes
7answers
10k 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 ...
9
votes
1answer
3k views

targetNamespace and xmlns without prefix, what is the difference?

In an xml schema document, if I have both the targetNamespace and the xmlns without a prefix. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.com/" ...
14
votes
8answers
17k 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 ...
11
votes
3answers
10k views

How to convert XSD to Python Class

I just want to know if there is a program that can convert an XSD file to a Python class as JAXB does for Java?
17
votes
6answers
15k 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
1answer
22k views

nillable and minOccurs xsd element attributes

I am going back and forth with setting an element to minOccurs="0" and nillable="true". I was reading this article and now in my WSDL I'm not sure if using both is worth it. The article gives a good ...
3
votes
1answer
962 views

Capture Schema Information when validating XDocument

This is similar to this question C# Get schema information when validating xml However, I am working with an XDocument for LINQ purposes. I am reading/parsing a set of CSV files and converting to ...
2
votes
2answers
4k views

Parse Complex WSDL Parameter Information

I am attempting to parse WSDL, along the lines of the example given here. The author notes, in the comments, that the example is not capable of drilling down into complex data types. And in fact, ...
4
votes
3answers
4k views

XML schema restriction pattern for not allowing empty strings

In my XML schema I have element of type string that I don't want to be empty (if it contains white-spaces etc I also consider it empty) I applied restrinction I found at ...
1
vote
1answer
576 views

XSD structure to CSV as path,type,cardinality

I need XSD unloaded into CSV file to build a mapping doc. The CSV is a list of all tags defined in XSD, in format path,type,cardinality. Something like: tag1/tag2/tag3,E,0..n ...
37
votes
3answers
33k views

Generate .net 4.0 class from xsd

What are the possibilities to generate .net C# 4.0 (Visual Studio 2010) class (entities) from xsd file.
22
votes
4answers
6k 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 ...
7
votes
3answers
1k views

Anyone that has a partial XSD that describes the METADATA section of Delphi TClientDataSet XML files?

I know that you cannot fully describe the XML that the TClientDataSet with an XSD schema, as the ROW elements have attributes that have names that vary with the contents. However, the METADATA ...
24
votes
5answers
7k views

How to choose between DTD and XSD

I want to use either a DTD or an XSD to describe my XML document. I've read that XSDs are better than DTDs since they support namespaces and data types, and that DTDs are older. Does this mean that I ...
8
votes
4answers
5k 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#
5
votes
2answers
12k views

Problem validating an XML file using Java with an XSD having an include

I'm using Java 5 javax.xml.validation.Validator to validate XML file. I've done it for one schema that uses only imports and everything works fine. Now I'm trying to validate with another schema that ...
5
votes
4answers
8k views

schema validation with msxml in delphi

I'm trying to validate an XML file against the schema's it references. (Using Delphi and MSXML2_TLB.) The (relevant part of the) code looks something like this: procedure TfrmMain.ValidateXMLFile; ...
16
votes
4answers
11k views

Xsd and inheritance

I have an xsd like this <xsd:complexType name="A"> <xsd:complexContent> <xsd:sequence> <xsd:element name="options"> ...
11
votes
6answers
7k views

XML Schema to C++ Classes

I have to write a C++ Application (using the Qt Framework for the GUI) that can edit data stored in xml files described by a xsd schema file. Is there a tool to convert the xsd schema into C++ ...
6
votes
5answers
3k views

Formatting XSD scheme for peer review

I designed a data model which is represented by an XSD scheme. The data model also provides the types that are being used as web service parameters in a WSDL descriptor. I would like to send the XSD ...
26
votes
6answers
14k 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 ...
4
votes
1answer
6k views

Generating an Xml file using Xsd file

I am new to xsd.Please provide me some help to generate an Xml using Xsd.
22
votes
2answers
13k 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" ...
7
votes
3answers
4k views

Where can I find the schema (XSD) for a .csproj file?

Where can I find the W3C XML Schema (XSD) for a .csproj file, for Visual Studio 2008? It seems like this should be obvious, but I spent some time and haven't found one. I looked in ...

1 2 3 4 5 9