I'm trying to validate a really simple xml using xsd, but for some reason I get this error. I'll really appreciate if someone can explain me why.
XML File
<?xml version="1.0" encoding="utf-8"?> 
<MyElement>A</MyElement>
XSD File
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://www.example.org/Test"
        xmlns:tns="http://www.example.org/Test"
        elementFormDefault="qualified">
    <simpleType name="MyType">
        <restriction base="string"></restriction>
    </simpleType>
    <element name="MyElement" type="tns:MyType"></element>
</schema>
 
     
     
     
     
     
    