Consider following two examples:
Example 1:
<xs:import namespace="http://example.com/ns" schemaLocation="test.xsd"/>
Example2:
<sample:Data Test="true" xsi:schemaLocation="http://example.com/test.xsd">
How these two examples are different? What is purpose of namespace ? Is it a required field, as I can not see in second example. (What kind of document should be available in the URL defined by the namespace? eg. some xml file or xsd file etc?)
Also, in first example there is schemaLocation while in second there is xsi:schemaLocation, what is diffence between these two? Also, what does the Test=true in second example mean?
Thanks.
Test="true"there is simply an attribute in that document. It only means whatever the software processing that document makes of it. – G_H Aug 23 '11 at 12:29