About 12,500,000 results
Open links in new tab
  1. How to validate an XML file against an XSD file? - Stack Overflow

    Jan 9, 2017 · I'm generating some xml files that needs to conform to an xsd file that was given to me. How should I verify they conform?

  2. Does XML care about the order of elements? - Stack Overflow

    78 #XML schema compositor "sequence" will enforce ordering Until today I would most likely answer the question Does XML care about the order of elements? with No, unless you use a poorly written xml …

  3. 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, using:...

  4. What is the difference between XML and XSD? - Stack Overflow

    Feb 25, 2010 · XML defines the syntax of elements and attributes for structuring data in a well-formed document. XSD (aka XML Schema Definition), like DTD before, powers the e X tensibility in XML by …

  5. XML Schema minOccurs / maxOccurs default values - Stack Overflow

    See Also W3C XML Schema Part 0: Primer In general, an element is required to appear when the value of minOccurs is 1 or more. The maximum number of times an element may appear is determined by …

  6. How to visualize an XML schema programatically? [closed]

    Display XML data in an XML data grid. Supports XML, XSL, XSLT, XSD, HTML file types. Easy to modify or delete existing nodes, attributes, comments. Easy to add new nodes, attributes or …

  7. Is there an XML schema extension for Visual Studio Code?

    Dec 15, 2017 · 34 I would like to write an XML Schema in Visual Studio Code and then some XML that is valid against that schema but surprisingly there does not seem to be a facility to do this either built …

  8. How to make an element in XML schema optional? - Stack Overflow

    How do I make the description element optional? So both XML with the description element and without will validate against the XSD.

  9. What is the correct way to represent null XML elements?

    But I assume you want Xml/Object mapping (since object graphs have nulls); so the answer for you is "whatever your tool uses". If you write handling, that means whatever you prefer. For tools that use …

  10. What is difference between XML Schema and DTD?

    Oct 9, 2009 · I have googled this question, but I do not understand clearly what is an XML schema and DTD (document type definition), and why the XML schema is more powerful compared to DTD. Any …