Top "Xsd" questions

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

Generating XML file using XSD file

How do you generate an XML file from an XSD file?

c# .net xml xsd xml-serialization
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 …

xml xsd xml-namespaces
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 …

xml xsd dtd
XSD Definition for Enumerated Value

I'm stuck trying to define an XSD containing a field that can have only one of the following three values: …

xsd
What does the ref attribute on an element in an XSD do?

Documentation seems to say that it references another element in the schema, but how could it be used - I've …

xml xsd schema
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 …

xml xsd schema xml-namespaces prefix
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 …

xml xsd
How to create a XSD schema from a class?

I'm having a hard time with the XSD files. I'm trying to create an XSD file from a class: public …

c# xml xsd xsd.exe linq-to-xsd
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 …

java xsd jaxb xjc jaxb2-basics
Understanding JAXB @XmlRootElement annotation

I am using the tutorial here for understanding JAXB. When the writer comes to create the root of the document, …

java xml xsd jaxb marshalling