What is wrong with this XML Schema Prolog?

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns-"http://www.w3.org/2001/XMLSchema">


Related posts:

  1. How can i view xml files on my PC ???
  2. How can I make changes to my style sheet for an xml document by numbering my listitems?
  3. How do I make XML show Japanese characters?

One Response to “What is wrong with this XML Schema Prolog?”

  • Jenna:

    I typically give my namespace a name e.g. xsd
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

    this allows me to have particular elements in that namespace
    i.e. <xsd:element name="first_name">texttexttext</xsd:element>

Leave a Reply