Hi Im having trouble validating some XML, I keep getting no declaration found for element Features errors.
heres the 1st part of the XSD
<?xml version="1.0" ?>
<xs:schema id="Features" targetNamespace="urn:284_SeAr.xsd" xmlns="urn:284_SeAr.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:sql="urn:schemas-microsoft-com:mapping-schema" xmlns:dt="urn:schemas-microsoft-com:datatypes" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:element name="Sediment_Area">
<xs:complexType>
<xs:sequence>...
And heres the start of my XML
<?xml version="1.0" encoding="UTF-8"?>
<Features>
<Sediment_Area>
it complains
no declaration found for element 'Features'
But even if I remove the features element it still has similar errors all over the rest of it. After looking at some similar problems I am now suspecting this is something to do with the namespaces but even if I move them into my XML it doesn't seem to parse.
Is features actually declared by <xs:schema id="Features" ?
what do I have to do with the namespaces in the XSD in my XML.
Thanks for any help.