About 14,000,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

    79 #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. 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 …

  5. 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 …

  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. 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 …

  8. How to document the structure of XML files - Stack Overflow

    I'd write an XML Schema (XSD) file to define the structure of the XML document. xs:annotation and xs:documentation tags can be included to describe the elements. The XSD file can be transformed …

  9. 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 …

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

    May 5, 2009 · 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 …