Hello everyone,
Suppose I have the following XML schema file and the following XML document file. I have two questions,
Since there is no target name space specified in XML Schema file, what namespace will Information element in?
In the XML document file, when using Information, which namespace does it belong to? Please notice in this case, I do not refer to XML Schema file from the XML document file.
XML Schema file:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:element name="Information" type="xs:string"/>
</xs:schema>
XML document file:
<?xml version="1.0" encoding="utf-8"?>
<Information>Hello XML</Information>
thanks in advance, George